source: trip-planner-front/node_modules/hdr-histogram-js/dist/Float64Histogram.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 767 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3/*
4 * This is a TypeScript port of the original Java version, which was written by
5 * Gil Tene as described in
6 * https://github.com/HdrHistogram/HdrHistogram
7 * and released to the public domain, as explained at
8 * http://creativecommons.org/publicdomain/zero/1.0/
9 */
10const TypedArrayHistogram_1 = require("./TypedArrayHistogram");
11class Float64Histogram extends TypedArrayHistogram_1.default {
12 constructor(lowestDiscernibleValue, highestTrackableValue, numberOfSignificantValueDigits) {
13 super(Float64Array, lowestDiscernibleValue, highestTrackableValue, numberOfSignificantValueDigits);
14 }
15}
16exports.default = Float64Histogram;
17//# sourceMappingURL=Float64Histogram.js.map
Note: See TracBrowser for help on using the repository browser.