emmet.sdk
Version:
Emmet.Bridge SDK library
13 lines • 396 B
JavaScript
;
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