UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

10 lines (9 loc) 241 B
export default stringSize; /** * Gets the number of symbols in `string`. * * @private * @param {string} string The string to inspect. * @returns {number} Returns the string size. */ declare function stringSize(string: string): number;