Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
shortid
/
lib
/
Filename :
is-valid.js
back
Copy
'use strict'; var alphabet = require('./alphabet'); function isShortId(id) { if (!id || typeof id !== 'string' || id.length < 6 ) { return false; } var nonAlphabetic = new RegExp('[^' + alphabet.get().replace(/[|\\{}()[\]^$+*?.-]/g, '\\$&') + ']'); return !nonAlphabetic.test(id); } module.exports = isShortId;