lakutata
Version:
An IoC-based universal application framework.
16 lines (11 loc) • 349 B
JavaScript
;
Object.defineProperty(exports, Symbol.toStringTag, {
value: "Module"
});
const e = require("../base/internal/IEEE754.cjs");
function t(t, r = 32) {
const o = Buffer.alloc(r / 8);
e.writeIEEE754(o, t, 0, false, o.length === 4 ? 23 : 52, o.length);
return o.toString("hex").toUpperCase();
}
exports.IEEE754ToHex = t;