Skip to content

Commit 6d8d654

Browse files
committed
Fix failing spec tests due to arrayify-stream update
1 parent 332d5eb commit 6d8d654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/parser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ const RdfXmlParser = require("..").RdfXmlParser;
22

33
module.exports = {
44
parse: function (data, baseIRI) {
5-
return require('arrayify-stream').default(require('streamify-string')(data).pipe(new RdfXmlParser({ baseIRI })));
5+
return require('arrayify-stream').arrayifyStream(require('streamify-string')(data).pipe(new RdfXmlParser({ baseIRI })));
66
},
77
};

0 commit comments

Comments
 (0)