MyRepo-Ums/node_modules/hdr-histogram-js/dist/ulp.js
2024-01-19 11:09:11 +01:00

12 lines
464 B
JavaScript

"use strict";
/*
* This is a TypeScript port of the original Java version, which was written by
* Gil Tene as described in
* https://github.com/HdrHistogram/HdrHistogram
* and released to the public domain, as explained at
* http://creativecommons.org/publicdomain/zero/1.0/
*/
Object.defineProperty(exports, "__esModule", { value: true });
const ulp = (x) => Math.pow(2, Math.floor(Math.log2(x)) - 52);
exports.default = ulp;
//# sourceMappingURL=ulp.js.map