mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-12 03:09:48 +08:00
7 lines
312 B
JavaScript
7 lines
312 B
JavaScript
|
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
|
exports.BELL_REGEX = exports.CLEAR_LINE_REGEX = void 0;
|
||
|
|
/* eslint-disable no-control-regex */
|
||
|
|
exports.CLEAR_LINE_REGEX = '(?:\\u001b|\\u009b)\\[[\\=><~/#&.:=?%@~_-]*[0-9]*[\\a-ln-tqyz=><~/#&.:=?%@~_-]+';
|
||
|
|
exports.BELL_REGEX = /\u0007/;
|