Vinícius Ernani de Carvalho 6c4544a079 Create the backend 6 years ago
..
lib 6c4544a079 Create the backend 6 years ago
test 6c4544a079 Create the backend 6 years ago
.editorconfig 6c4544a079 Create the backend 6 years ago
.eslintrc 6c4544a079 Create the backend 6 years ago
.gitattributes 6c4544a079 Create the backend 6 years ago
.travis.yml 6c4544a079 Create the backend 6 years ago
LICENSE 6c4544a079 Create the backend 6 years ago
code-points.mem 6c4544a079 Create the backend 6 years ago
generate-code-points.js 6c4544a079 Create the backend 6 years ago
index.js 6c4544a079 Create the backend 6 years ago
package.json 6c4544a079 Create the backend 6 years ago
readme.md 6c4544a079 Create the backend 6 years ago

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 (c) Dmitriy Tsvettsikh