mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-18 18:26:24 -07:00
chore: add yarn command to put compiled stylesheets into builds folder
This commit is contained in:
parent
7ae453a61c
commit
6e46b46074
6788 changed files with 697992 additions and 12 deletions
33
node_modules/@sindresorhus/merge-streams/readme.md
generated
vendored
Normal file
33
node_modules/@sindresorhus/merge-streams/readme.md
generated
vendored
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
# merge-streams
|
||||
|
||||
> Merge multiple streams into a unified stream
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
npm install @sindresorhus/merge-streams
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
import mergeStreams from '@sindresorhus/merge-streams';
|
||||
|
||||
const stream = mergeStreams([streamA, streamB]);
|
||||
|
||||
for await (const chunk of stream) {
|
||||
console.log(chunk);
|
||||
//=> 'A1'
|
||||
//=> 'B1'
|
||||
//=> 'A2'
|
||||
//=> 'B2'
|
||||
}
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
### `mergeStreams(streams: stream.Readable[]): stream.Readable`
|
||||
|
||||
Merges an array of [readable streams](https://nodejs.org/api/stream.html#readable-streams) and returns a new readable stream that emits data from the individual streams as it arrives.
|
||||
|
||||
If you provide an empty array, it returns an already-ended stream.
|
||||
Loading…
Add table
Add a link
Reference in a new issue