/** * This module will export ALL peer modules, that is all modules that have some peer dependency, * which will only allow them to be run in the right environment (NodeJS for streams) or when the * right peer dependencies are installed. * * **WATCH OUT**: importing the entire module requires all **peer dependencies** to be installed as well * (for example: observable has RxJS as a peer dependency) * * You could also import more specifically what you need: * ``` * import { itr8FromStdIn } from 'itr8/peer/stream' * ``` * * @module */ export * from "./stream.js"; export * from "./observable.js"; export * from "./parseJson.js";