typed-array-interleave
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

typed-array-interleave

npm version stability-stable npm minzipped size dependencies types Conventional Commits styled with prettier linted with eslint license

Interleave n typed arrays.

paypal coinbase twitter

Installation

npm install typed-array-interleave

Usage

import typedArrayInterleave from "typed-array-interleave";
typedArrayInterleave(
  Uint8Array,
  [3, 2],
  Uint8Array.of(1, 2, 3, 4, 5, 6),
  Uint8Array.of(7, 8, 9, 10)
);
//=> Uint8Array [1, 2, 3, 7, 8, 4, 5, 6, 9, 10]

API

typedArrayInterleave

typedArrayInterleave(ResultConstructor, elements, ...arrays) ⇒ TypedArray

Interleave n typed arrays

Kind: Exported function

Param Type Description
ResultConstructor TypedArray Returned typed array constructor
elements Array Number of elements to group for each typed array
...arrays TypedArray Arrays to interleave

License

MIT. See license file.

Package Sidebar

Install

npm i typed-array-interleave

Weekly Downloads

0

Version

2.0.0

License

MIT

Unpacked Size

7.07 kB

Total Files

6

Last publish

Collaborators

  • dmnsgn