El Mehdi Touimi Benjelloun 015b74845c First commit il y a 4 ans
..
lib 015b74845c First commit il y a 4 ans
test 015b74845c First commit il y a 4 ans
.editorconfig 015b74845c First commit il y a 4 ans
.gitattributes 015b74845c First commit il y a 4 ans
.travis.yml 015b74845c First commit il y a 4 ans
CHANGELOG.md 015b74845c First commit il y a 4 ans
LICENSE 015b74845c First commit il y a 4 ans
code-points.mem 015b74845c First commit il y a 4 ans
generate-code-points.js 015b74845c First commit il y a 4 ans
index.js 015b74845c First commit il y a 4 ans
package.json 015b74845c First commit il y a 4 ans
readme.md 015b74845c First commit il y a 4 ans

readme.md

saslprep

Build Status npm node license downloads

Stringprep Profile for User Names and Passwords, rfc4013

Usage

const saslprep = require('saslprep')

saslprep('password\u00AD') // password
saslprep('password\u0007') // Error: prohibited character

API

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.

License

MIT, 2017-2019 (c) Dmitriy Tsvettsikh