Skip to content

Commit

Permalink
chore(deps): update arrayify stream
Browse files Browse the repository at this point in the history
  • Loading branch information
jeswr committed Aug 26, 2024
1 parent 9f200b6 commit 4262693
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
17 changes: 9 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@babel/preset-env": "^7.16.0",
"@babel/register": "^7.16.0",
"@rdfjs/data-model": "^1",
"arrayify-stream": "^1.0.0",
"arrayify-stream": "^3.0.0",
"browserify": "^17.0.0",
"deep-taxonomy-benchmark": "^1.2.0",
"docco": "^0.9.1",
Expand Down
2 changes: 1 addition & 1 deletion spec/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const { StreamParser } = require('..');
// https://github.com/rubensworks/rdf-test-suite.js/blob/master/lib/testcase/rdfsyntax/IParser.ts
module.exports = {
parse: function (data, baseIRI, options) {
return require('arrayify-stream')(require('streamify-string')(data).pipe(
return require('arrayify-stream').arrayifyStream(require('streamify-string')(data).pipe(
new StreamParser(Object.assign({ baseIRI: baseIRI }, options))));
},
};

0 comments on commit 4262693

Please sign in to comment.