thedesk/app/node_modules/utf8-byte-length/index.js

9 lines
197 B
JavaScript
Raw Normal View History

2019-09-13 00:38:13 +10:00
"use strict";
module.exports = function getByteLength(string) {
if (typeof string !== "string") {
throw new Error("Input must be string");
}
return Buffer.byteLength(string, "utf8");
};