https://github.com/christianbundy/pull-jq
https://github.com/christianbundy/pull-jq
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/christianbundy/pull-jq
- Owner: christianbundy
- Created: 2020-04-21T04:03:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-11T04:32:01.000Z (over 2 years ago)
- Last Synced: 2025-02-08T01:50:00.146Z (5 months ago)
- Language: JavaScript
- Size: 85.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Pull-JQ
```sh
npm install pull-jq
```## Example
```javascript
const pullJq = require("pull-jq");
const pull = require("pull-stream");pull(
pull.values([
{ seq: 0, text: "hello" },
{ seq: 1, text: "world" },
{ seq: 2, text: "!" },
]),
pullJq(".text"),
pull.drain(console.log)
);
```## License
AGPL-3.0