UNPKG

@jsonjoy.com/buffers

Version:

Various helper utilities for working with buffers and binary data

7 lines (6 loc) 209 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const from = Buffer.from; exports.default = (arr, start, length) => from(arr) .subarray(start, start + length) .toString();