ccashfrontend/views/node_modules/saslprep
2021-06-18 09:20:09 +10:00
..
lib half new patch 2021-06-18 09:20:09 +10:00
test half new patch 2021-06-18 09:20:09 +10:00
.editorconfig half new patch 2021-06-18 09:20:09 +10:00
.gitattributes half new patch 2021-06-18 09:20:09 +10:00
.travis.yml half new patch 2021-06-18 09:20:09 +10:00
CHANGELOG.md half new patch 2021-06-18 09:20:09 +10:00
code-points.mem half new patch 2021-06-18 09:20:09 +10:00
generate-code-points.js half new patch 2021-06-18 09:20:09 +10:00
index.js half new patch 2021-06-18 09:20:09 +10:00
LICENSE half new patch 2021-06-18 09:20:09 +10:00
package.json half new patch 2021-06-18 09:20:09 +10:00
readme.md half new patch 2021-06-18 09:20:09 +10: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