mirror of
https://gitee.com/myxzgzs/boyue_jnpf.git
synced 2025-08-09 07:42:43 +08:00
9 lines
197 B
JavaScript
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");
|
||
|
};
|