Skip to content

Commit

Permalink
removed + '' left in last commit
Browse files Browse the repository at this point in the history
  • Loading branch information
elf Pavlik committed Nov 18, 2014
1 parent 8508bb4 commit af05402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function levelgraphJSONLD(db, jsonldOpts) {
if(triple.object.datatype === 'http://www.w3.org/2001/XMLSchema#string'){
node.value = '"' + triple.object.value + '"';
} else {
node.value = '"' + triple.object.value + '"^^' + triple.object.datatype + '';
node.value = '"' + triple.object.value + '"^^' + triple.object.datatype;
}
} else if(triple.object.datatype.match(RDFLANGSTRING)){
node.value = '"' + triple.object.value + '"@' + triple.object.language;
Expand Down

0 comments on commit af05402

Please sign in to comment.