Skip to content

Commit b10a0ec

Browse files
authored
Fix invalid arrayify-stream call
1 parent 28e6371 commit b10a0ec

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
@@ -11,7 +11,7 @@ module.exports = {
1111
return Promise.reject(
1212
new ErrorSkipped(`Test with spec version ${options.specVersion} was skipped, only 1.1 is supported.`));
1313
}
14-
return require('arrayify-stream')(require('streamify-string')(data)
14+
return require('arrayify-stream').default(require('streamify-string')(data)
1515
.pipe(new JsonLdParser(Object.assign({
1616
baseIRI,
1717
validateValueIndexes: true,

0 commit comments

Comments
 (0)