UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

9 lines (7 loc) 136 B
/** * Returns the length of a string in bytes. */ function byteSize(str) { return new Blob([str]).size; } export default byteSize;