Comparing version 2.0.2 to 2.0.3
@@ -53,3 +53,3 @@ const mismatch = require('mismatch'); | ||
.reduce((acc, { 'key': key, 'val': val }) => { | ||
if (!val) { | ||
if (val === undefined) { | ||
acc[key] = true | ||
@@ -56,0 +56,0 @@ return acc |
@@ -0,1 +1,7 @@ | ||
## 27 July 2019 | ||
### [2.0.3](https://github.com/artdecocode/rexml/compare/v2.0.2...v2.0.3) | ||
- [fix] Correctly parse empty string attributes (`attr=""`). | ||
## 20 June 2019 | ||
@@ -2,0 +8,0 @@ |
{ | ||
"name": "rexml", | ||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
"description": "Simple XML parsing with a regular expression.", | ||
@@ -42,8 +42,8 @@ "main": "build/index.js", | ||
"devDependencies": { | ||
"@babel/cli": "7.4.4", | ||
"@babel/core": "7.4.5", | ||
"@babel/cli": "7.5.5", | ||
"@babel/core": "7.5.5", | ||
"@babel/plugin-proposal-unicode-property-regex": "7.4.4", | ||
"@babel/register": "7.4.4", | ||
"alamode": "^2.3.4", | ||
"documentary": "^1.27.3", | ||
"@babel/register": "7.5.5", | ||
"alamode": "^2.3.6", | ||
"documentary": "^1.28.0", | ||
"eslint-config-artdeco": "1.0.1", | ||
@@ -50,0 +50,0 @@ "yarn-s": "1.1.0", |
@@ -181,3 +181,4 @@ # rexml | ||
<a href="https://artd.eco"> | ||
<img src="https://raw.githubusercontent.com/wrote/wrote/master/images/artdeco.png" alt="Art Deco"> | ||
<img width="100" src="https://raw.githubusercontent.com/wrote/wrote/master/images/artdeco.png" | ||
alt="Art Deco"> | ||
</a> | ||
@@ -188,3 +189,3 @@ </th> | ||
<a href="https://www.technation.sucks" title="Tech Nation Visa"> | ||
<img src="https://raw.githubusercontent.com/artdecoweb/www.technation.sucks/master/anim.gif" | ||
<img width="100" src="https://raw.githubusercontent.com/idiocc/cookies/master/wiki/arch4.jpg" | ||
alt="Tech Nation Visa"> | ||
@@ -191,0 +192,0 @@ </a> |
@@ -53,3 +53,3 @@ import mismatch from 'mismatch' | ||
.reduce((acc, { 'key': key, 'val': val }) => { | ||
if (!val) { | ||
if (val === undefined) { | ||
acc[key] = true | ||
@@ -56,0 +56,0 @@ return acc |
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
52156
196