Welcome to mirror list, hosted at ThFree Co, Russian Federation.

QRMode.js « QRCode « vendor « qrcode-terminal « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 050c8a3037f60d1e034764035394c55bca34f3c3 (plain)
1
2
3
4
5
6
module.exports = {
    MODE_NUMBER :       1 << 0,
    MODE_ALPHA_NUM :    1 << 1,
    MODE_8BIT_BYTE :    1 << 2,
    MODE_KANJI :        1 << 3
};