index.js 186 B

12345678
  1. 'use strict';
  2. module.exports = function (str) {
  3. if (typeof str !== 'string') {
  4. throw new TypeError('Expected a string');
  5. }
  6. return !/[^0-9a-z\xDF-\xFF]/.test(str.toLowerCase());
  7. };