gennadysht 546a9cacdd initial back | пре 1 година | |
---|---|---|
.. | ||
lib | пре 1 година | |
test | пре 1 година | |
.editorconfig | пре 1 година | |
.gitattributes | пре 1 година | |
.travis.yml | пре 1 година | |
CHANGELOG.md | пре 1 година | |
LICENSE | пре 1 година | |
code-points.mem | пре 1 година | |
generate-code-points.js | пре 1 година | |
index.js | пре 1 година | |
package.json | пре 1 година | |
readme.md | пре 1 година |
Stringprep Profile for User Names and Passwords, rfc4013
const saslprep = require('saslprep')
saslprep('password\u00AD') // password
saslprep('password\u0007') // Error: prohibited character
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.
MIT, 2017-2019 (c) Dmitriy Tsvettsikh