Initial commit
This commit is contained in:
10
node_modules/validator/es/lib/isAscii.js
generated
vendored
Normal file
10
node_modules/validator/es/lib/isAscii.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
import assertString from './util/assertString';
|
||||
|
||||
/* eslint-disable no-control-regex */
|
||||
var ascii = /^[\x00-\x7F]+$/;
|
||||
/* eslint-enable no-control-regex */
|
||||
|
||||
export default function isAscii(str) {
|
||||
assertString(str);
|
||||
return ascii.test(str);
|
||||
}
|
||||
Reference in New Issue
Block a user