This repository has been archived on 2024-09-11. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs-blog-newsletter/cronjob/node_modules/@mongodb-js/saslprep
2024-05-26 22:54:55 +02:00
..
dist Initial commit 2024-05-26 22:54:55 +02:00
LICENSE Initial commit 2024-05-26 22:54:55 +02:00
package.json Initial commit 2024-05-26 22:54:55 +02:00
readme.md Initial commit 2024-05-26 22:54:55 +02:00

saslprep

Note: This is a fork of the original saslprep npm package and provides equivalent functionality.

Stringprep Profile for User Names and Passwords, rfc4013

Usage

const saslprep = require('@mongodb-js/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