Skip to content

Commit 5e44c20

Browse files
committed
Remove unneeded await.
1 parent b56999b commit 5e44c20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/jsonld.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ jsonld.toRDF = async function(input, options) {
681681
if(options.format) {
682682
if(options.format === 'application/n-quads' ||
683683
options.format === 'application/nquads') {
684-
return await NQuads.serialize(dataset);
684+
return NQuads.serialize(dataset);
685685
}
686686
throw new JsonLdError(
687687
'Unknown output format.',

0 commit comments

Comments
 (0)