-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for @direction
.
#7
Conversation
ec154b2
to
c5f9a45
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #7 +/- ##
==========================================
+ Coverage 97.10% 97.12% +0.02%
==========================================
Files 6 6
Lines 138 139 +1
==========================================
+ Hits 134 135 +1
Misses 4 4
Continue to review full report in Codecov by Sentry.
|
lib/canonize.js
Outdated
const opts = { | ||
...options, produceGeneralizedRdf: false, rdfDirection: 'i18n-datatype' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const opts = { | |
...options, produceGeneralizedRdf: false, rdfDirection: 'i18n-datatype' | |
const opts = { | |
rdfDirection: 'i18n-datatype', ...options, produceGeneralizedRdf: false |
lib/canonize.js
Outdated
const opts = {...options, produceGeneralizedRdf: false}; | ||
const opts = { | ||
...options, produceGeneralizedRdf: false, rdfDirection: 'i18n-datatype' | ||
}; | ||
delete opts.format; | ||
opts.produceGeneralizedRdf = false; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
opts.produceGeneralizedRdf = false; |
No description provided.