UNPKG

@loaders.gl/core

Version:

The core API for working with loaders.gl loaders and writers

9 lines 414 B
import type { IteratorOptions } from "./make-iterator.js"; /** * Returns an iterator that breaks a big string into chunks and yields them one-by-one as ArrayBuffers * @param blob string to iterate over * @param options * @param options.chunkSize */ export declare function makeStringIterator(string: string, options?: IteratorOptions): Iterable<ArrayBuffer>; //# sourceMappingURL=make-string-iterator.d.ts.map