unboundedpress/node_modules/saslprep
2019-07-23 04:28:47 +00:00
..
lib initial commit 2019-07-23 04:28:47 +00:00
test initial commit 2019-07-23 04:28:47 +00:00
CHANGELOG.md initial commit 2019-07-23 04:28:47 +00:00
code-points.mem initial commit 2019-07-23 04:28:47 +00:00
generate-code-points.js initial commit 2019-07-23 04:28:47 +00:00
index.js initial commit 2019-07-23 04:28:47 +00:00
LICENSE initial commit 2019-07-23 04:28:47 +00:00
package.json initial commit 2019-07-23 04:28:47 +00:00
readme.md initial commit 2019-07-23 04:28:47 +00:00

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