El Mehdi Touimi Benjelloun 015b74845c First commit | 5 anni fa | |
---|---|---|
.. | ||
lib | 5 anni fa | |
test | 5 anni fa | |
.editorconfig | 5 anni fa | |
.gitattributes | 5 anni fa | |
.travis.yml | 5 anni fa | |
CHANGELOG.md | 5 anni fa | |
LICENSE | 5 anni fa | |
code-points.mem | 5 anni fa | |
generate-code-points.js | 5 anni fa | |
index.js | 5 anni fa | |
package.json | 5 anni fa | |
readme.md | 5 anni fa |
Stringprep Profile for User Names and Passwords, rfc4013
const saslprep = require('saslprep')
saslprep('password\u00AD') // password
saslprep('password\u0007') // Error: prohibited character
saslprep(input: String, opts: Options): String
Normalize user name or password.
Options.allowUnassigned: bool
A special behavior for unassigned code points, see https://tools.ietf.org/html/rfc4013#section-2.5. Disabled by default.
MIT, 2017-2019 (c) Dmitriy Tsvettsikh