22 lines
549 B
JavaScript
22 lines
549 B
JavaScript
|
'use strict';
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
exports.default = isAscii;
|
||
|
|
||
|
var _assertString = require('./util/assertString');
|
||
|
|
||
|
var _assertString2 = _interopRequireDefault(_assertString);
|
||
|
|
||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||
|
|
||
|
/* eslint-disable no-control-regex */
|
||
|
var ascii = /^[\x00-\x7F]+$/;
|
||
|
/* eslint-enable no-control-regex */
|
||
|
|
||
|
function isAscii(str) {
|
||
|
(0, _assertString2.default)(str);
|
||
|
return ascii.test(str);
|
||
|
}
|
||
|
module.exports = exports['default'];
|