Files
Manmics/mangashelf-server/node_modules/utf8-byte-length/index.js
T
2025-10-10 18:00:07 -04:00

9 lines
197 B
JavaScript

"use strict";
module.exports = function getByteLength(string) {
if (typeof string !== "string") {
throw new Error("Input must be string");
}
return Buffer.byteLength(string, "utf8");
};