9 lines
197 B
JavaScript
Raw Permalink Normal View History

2022-09-30 05:39:11 +00:00
"use strict";
module.exports = function getByteLength(string) {
if (typeof string !== "string") {
throw new Error("Input must be string");
}
return Buffer.byteLength(string, "utf8");
};