@ayonli/jsext
Version:
A JavaScript extension package for building strong and modern applications.
13 lines (11 loc) • 295 B
text/typescript
/**
* Reads all streaming data at once.
* @module
* @deprecated Use `@ayonli/jsext/reader` module instead.
*/
import { readAsArray } from "./reader.ts";
/**
* @deprecated Use {@link readAsArray} from `@ayonli/jsext/reader` instead.
*/
const readAll = readAsArray;
export default readAll;