Sha256: 5c448e1448ba1ec475cf20cfc85d204882507613c2cd32c99151a4c9636cc45d
Contents?: true
Size: 333 Bytes
Versions: 1
Compression:
Stored size: 333 Bytes
Contents
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.concat = (...arrays) => arrays.reduce((a, b) => Uint8Array.from([...a, ...b]), new Uint8Array(0)); exports.range = (start, end, step = 1) => Array.from({ length: end - start }) .map((_, i) => i * step + start); //# sourceMappingURL=utils.js.map
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
waves_lib-0.1.0 | js/node_modules/@waves/marshall/dist/libs/utils.js |