typescript-util
Version:
JS/TS 的简单工具
65 lines • 1.15 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.StringConstant = void 0;
/**
* StringConstant
* @author LL
* @date 2022-01-10 下午 10:41
**/
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 = '@';
}
exports.StringConstant = StringConstant;
//# sourceMappingURL=StringConstant.js.map