Files
Remote-Control-Center/mc_test/node_modules/utf8-byte-length/index.js
2025-11-25 09:56:15 +03:00

9 lines
197 B
JavaScript
Executable File

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