Skip to content

Commit a0cba55

Browse files
authored
Fix incorrect arrayify-stream call
1 parent b98fd36 commit a0cba55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/parser.js

+1-1
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')(require('streamify-string')(data).pipe(new RdfXmlParser({ baseIRI })));
5+
return require('arrayify-stream').default(require('streamify-string')(data).pipe(new RdfXmlParser({ baseIRI })));
66
},
77
};

0 commit comments

Comments
 (0)