UNPKG

javascript-binary-converter

Version:

A utility package to quickly handle and convert various Javascript binary objects

10 lines (8 loc) 240 B
import { TypedArray } from "../sharedTypes"; export function typedArrayToIntegers(typedArray: TypedArray) { const decimals = [] for (let decimal of typedArray) { decimals.push(decimal) } return decimals; }