@testyard/stats
Version:
Value stats tester.
37 lines (33 loc) • 1.05 kB
JavaScript
/*!
* @testyard/stats v1.4.1
* https://github.com/testyardjs/stats
*
* Copyright (c) 2023 Richard King <richrdkng@gmail.com> (https://richrdkng.com)
* Released under the MIT License
* https://github.com/testyardjs/stats/blob/main/LICENSE
*
* Date: 2023-07-19T13:11:26.750Z
*/
;
var index = require('./BooleanStats/index.js');
var index$1 = require('./CharacterStats/index.js');
var index$2 = require('./StringStats/index.js');
var index$3 = require('./FloatStats/index.js');
var index$4 = require('./IntegerStats/index.js');
var index$5 = require('./BigIntStats/index.js');
/**
* Default iteration length for gathering stats data.
* This ***(1 million iterations by default)*** should be enough
* in most stats gathering cases.
*
* @default 1000000
*/
const LENGTH = 1000000;
exports.BooleanStats = index;
exports.CharacterStats = index$1;
exports.StringStats = index$2;
exports.FloatStats = index$3;
exports.IntegerStats = index$4;
exports.BigIntStats = index$5;
exports.LENGTH = LENGTH;
//# sourceMappingURL=index.js.map