UNPKG

emmet.sdk

Version:
13 lines 343 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.toBigInt = void 0; function toBigInt(x) { if (!x) return 0n; let internal = typeof x === 'string' ? x.replace(/[^0-9]/g, '') : x; return BigInt(internal); } exports.toBigInt = toBigInt; //# sourceMappingURL=toBigInt.js.map