Skip to content

Commit 6140e86

Browse files
committed
chore: remove doubling comment
1 parent e7646d9 commit 6140e86

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/N3DataFactory.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,8 +248,6 @@ export function termToId(term, nested) {
248248
term.language ? `@${term.language}` :
249249
(term.datatype && term.datatype.value !== xsd.string ? `^^${term.datatype.value}` : '')}`;
250250
case 'Quad':
251-
// To identify RDF-star quad components, we escape quotes by doubling them.
252-
// This avoids the overhead of backslash parsing of Turtle-like syntaxes.
253251
const res = [
254252
termToId(term.subject, true),
255253
termToId(term.predicate, true),

0 commit comments

Comments
 (0)