UNPKG

svcorelib

Version:

Core library used in the projects of Sv443 and the Sv443 Network. Contains tons of miscellaneous QoL features.

10 lines (7 loc) 170 B
function byteLength(str) { if(!str || typeof str != "string") return -1; return Buffer.byteLength(str, "utf8"); } module.exports = byteLength;