init
This commit is contained in:
8
mc_test/node_modules/utf8-byte-length/index.js
generated
vendored
Executable file
8
mc_test/node_modules/utf8-byte-length/index.js
generated
vendored
Executable file
@ -0,0 +1,8 @@
|
||||
"use strict";
|
||||
|
||||
module.exports = function getByteLength(string) {
|
||||
if (typeof string !== "string") {
|
||||
throw new Error("Input must be string");
|
||||
}
|
||||
return Buffer.byteLength(string, "utf8");
|
||||
};
|
||||
Reference in New Issue
Block a user