UNPKG

randomval

Version:
29 lines (26 loc) 515 B
/** * * @module randomval */ 'use strict'; var d = function d(module) { return module.default || module; }; module.exports = { get randomBool() { return d(require('./random_bool')); }, get randomDate() { return d(require('./random_date')); }, get randomHash() { return d(require('./random_hash')); }, get randomInt() { return d(require('./random_int')); }, get random() { return d(require('./random')); } }; //# sourceMappingURL=data:application/json;base64,bnVsbA==