string-utils.js (114B)
1 const isNonAsciiRegex = /[^\u0000-\u007F]/ 2 3 function isNonAscii(string) { 4 return isNonAsciiRegex.test(string) 5 }