UNPKG

triam-base

Version:
11 lines (7 loc) 228 B
import {times} from "lodash"; export function bufferToArray(buffer, length, offset=0) { return times(length, n => buffer[offset + n]); } export function cursorToArray(io) { return bufferToArray(io.buffer(), io.tell()); }