UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

11 lines (8 loc) 153 B
'use strict'; /** * Returns the length of a string in bytes. */ function byteSize(str) { return new Blob([str]).size; } module.exports = byteSize;