Sha256: 3a571efca8171855023fa319ac42bb8c8e7a77746aa014c4ca3a6126f16b603e
Contents?: true
Size: 186 Bytes
Versions: 23
Compression:
Stored size: 186 Bytes
Contents
'use strict'; module.exports = function (str) { if (typeof str !== 'string') { throw new TypeError('Expected a string'); } return !/[^0-9a-z\xDF-\xFF]/.test(str.toLowerCase()); };
Version data entries
23 entries across 23 versions & 1 rubygems