typescript-util
Version:
JS/TS 的简单工具
61 lines • 1 kB
JavaScript
/**
* StringConstant
* @author LL
* @date 2022-01-10 下午 10:41
**/
export class StringConstant {
/**
* 空字符串常量
* @type {string}
*/
static EMPTY = '';
/**
* 问号 ❓
* @type {string}
*/
static ASK = '?';
/**
* 等于号
* @type {string}
*/
static EQUAL = '=';
/**
* 路径分隔符
* @type {string}
*/
static PATH_INTEGRAL = '/';
/**
* 点
*/
static DO = '.';
/**
* 逗号
* @type {string}
*/
static COMMA = ',';
/**
* 空
* @type {string}
*/
static NULL = 'null';
/**
* 未定义
* @type {string}
*/
static UNDEFINED = 'undefined';
/**
* HTTP 协议头
* @type {string}
*/
static HTTP = 'http://';
/**
* HTTPS 协议头
* @type {string}
*/
static HTTPS = 'https://';
/**
* @
*/
static AT = '@';
}
//# sourceMappingURL=StringConstant.js.map