mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-07 03:14:07 +08:00
16 lines
166 B
JavaScript
16 lines
166 B
JavaScript
/**
|
|
* Created by nuintun on 2015/11/24.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
normal: 0,
|
|
escaped: 1,
|
|
csi: 2,
|
|
osc: 3,
|
|
charset: 4,
|
|
dcs: 5,
|
|
ignore: 6
|
|
};
|