@beenotung/tslib
Version:
utils library in Typescript
16 lines (15 loc) • 578 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.number = void 0;
var number;
(function (number) {
let constant;
(function (constant) {
constant.ten = 10;
constant.hundred = 100;
constant.thousand = 1000;
constant.million = constant.thousand * constant.thousand;
constant.billion = constant.million * constant.thousand;
constant.trillion = constant.billion * constant.thousand;
})(constant = number.constant || (number.constant = {}));
})(number || (exports.number = number = {}));