Package Exports
- securejs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (securejs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
securejs
Download
npm i securejsUsage
JavaScript
const secure = require('securejs')TypeScript
import * as secure from 'securejs'Creating a new ID
secure.newId(10)
// Output: 2o9GCroXsDsecure.newId(10, 'string', {
case: 'uppercase'
})
// Output: SUPRJVKXQLsecure.makeId(10, index => index + 1)
// Output: 12345678910