UNPKG

emmet.sdk

Version:
13 lines 396 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getUintDiff = void 0; const format2BigInt_1 = require("./format2BigInt"); const getUintDiff = (a, b) => { const { _a, _b } = (0, format2BigInt_1.format2BigInt)(a, b); if (a && b) { return _a - _b; } return 0n; }; exports.getUintDiff = getUintDiff; //# sourceMappingURL=getUintDiff.js.map