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