pull-jq
v1.0.0
Published
pull-stream binding to jq (from node-jq to libjq)
Downloads
2
Readme
Pull-JQ
npm install pull-jq
Example
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