UNPKG

lenye_base

Version:

基础方法

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