UNPKG

lenye_base

Version:

基础方法

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