@rmlio/yarrrml-parser
Advanced tools
Comparing version 0.3.7 to 0.3.8
@@ -10,2 +10,7 @@ # Changelog | ||
## [0.3.8] - 2019-09-26 | ||
### Fixed | ||
- Not all escaped characters were considered when expanding prefix (see [issue 23](https://github.com/RMLio/yarrrml-parser/issues/23)) | ||
## [0.3.7] - 2019-08-14 | ||
@@ -105,2 +110,3 @@ | ||
[0.3.8]: https://github.com/RMLio/yarrrml-parser/compare/v0.3.7...v0.3.8 | ||
[0.3.7]: https://github.com/RMLio/yarrrml-parser/compare/v0.3.6...v0.3.7 | ||
@@ -107,0 +113,0 @@ [0.3.6]: https://github.com/RMLio/yarrrml-parser/compare/v0.3.5...v0.3.6 |
@@ -590,3 +590,3 @@ /** | ||
str = str.replace('\\:', '@@@@____@@@@'); | ||
str = str.replace(/\\:/g, '@@@@____@@@@'); | ||
@@ -597,3 +597,3 @@ | ||
if (splits.length === 1) { | ||
return str.replace('@@@@____@@@@', ':'); | ||
return str.replace(/@@@@____@@@@/g, ':'); | ||
} | ||
@@ -600,0 +600,0 @@ |
@@ -123,2 +123,6 @@ /** | ||
}); | ||
it('escape character', function (done) { | ||
work('escape-character/mapping.yarrrml', 'escape-character/mapping.rml.ttl', done); | ||
}); | ||
}); | ||
@@ -125,0 +129,0 @@ |
{ | ||
"name": "@rmlio/yarrrml-parser", | ||
"version": "0.3.7", | ||
"version": "0.3.8", | ||
"description": "Parse YARRRML descriptions into RML RDF statements", | ||
@@ -5,0 +5,0 @@ "main": "lib/yarrrml2rml.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
283035
114
3338