UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

10 lines (9 loc) 274 B
export default hasUnicode; /** * Checks if `string` contains Unicode symbols. * * @private * @param {string} string The string to inspect. * @returns {boolean} Returns `true` if a symbol is found, else `false`. */ declare function hasUnicode(string: string): boolean;