lakutata
Version:
An IoC-based universal application framework.
17 lines (12 loc) • 423 B
JavaScript
/* Build Date: Mon Jan 05 2026 23:52:23 GMT+0800 (China Standard Time) */
;
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;