Skip to content

Commit

Permalink
доработка парсинга регулярок
Browse files Browse the repository at this point in the history
  • Loading branch information
Katochimoto committed Nov 20, 2016
1 parent 3b4fafb commit 52fe96f
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion dist/x-bubbles-compact.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ var XBubbles =
return null;

case 'object':
if (value instanceof context.RegExp) {
if (value instanceof context.RegExp || value === null) {
return value;
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/x-bubbles-compact.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/x-bubbles-compact.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/x-bubbles.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ var XBubbles =
return null;

case 'object':
if (value instanceof context.RegExp) {
if (value instanceof context.RegExp || value === null) {
return value;
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/x-bubbles.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/x-bubbles.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/x-bubbles.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/x-bubbles.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "x-bubbles",
"description": "Bubbles",
"version": "0.0.25",
"version": "0.0.26",
"keywords": [],
"homepage": "https://github.com/Katochimoto/x-bubbles",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const OPTIONS_PREPARE = {
return null;

case 'object':
if (value instanceof context.RegExp) {
if (value instanceof context.RegExp || value === null) {
return value;
}
}
Expand Down

0 comments on commit 52fe96f

Please sign in to comment.