mirror of
https://github.com/nodejs/node.git
synced 2025-05-16 14:23:58 +00:00

Closes: https://github.com/nodejs/node/pull/16280 PR-URL: https://github.com/nodejs/node/pull/16509 Fixes: https://github.com/nodejs/node/issues/14161 Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com>
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
module.exports = {
|
|
MODE_NUMBER : 1 << 0,
|
|
MODE_ALPHA_NUM : 1 << 1,
|
|
MODE_8BIT_BYTE : 1 << 2,
|
|
MODE_KANJI : 1 << 3
|
|
};
|