├── .eslintrc ├── .github ├── dependabot.yml └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── __tests__ ├── .eslintrc ├── __snapshots__ │ ├── edges.js.snap │ ├── errors.js.snap │ └── types.js.snap ├── edges.js ├── errors.js └── types.js ├── lib └── index.js ├── package.json └── utils └── index.js /.eslintrc: -------------------------------------------------------------------------------- 1 | --- 2 | extends: standard 3 | env: 4 | node: true 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | coverage 3 | node_modules 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/.eslintrc: -------------------------------------------------------------------------------- 1 | --- 2 | env: 3 | jest: true 4 | -------------------------------------------------------------------------------- /__tests__/__snapshots__/edges.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[`values at the edges 1`] = `"1test2"`; 4 | -------------------------------------------------------------------------------- /__tests__/__snapshots__/errors.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/__tests__/__snapshots__/errors.js.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/types.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/__tests__/__snapshots__/types.js.snap -------------------------------------------------------------------------------- /__tests__/edges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/__tests__/edges.js -------------------------------------------------------------------------------- /__tests__/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/__tests__/errors.js -------------------------------------------------------------------------------- /__tests__/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/__tests__/types.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/package.json -------------------------------------------------------------------------------- /utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanong/pipe/HEAD/utils/index.js --------------------------------------------------------------------------------