Skip to content

Commit

Permalink
ax5core 0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasJang committed Jan 31, 2016
1 parent 4984ac9 commit 658a71d
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ax5core",
"version": "0.7.4",
"version": "0.7.5",
"authors": [
"ThomasJ <[email protected]>"
],
Expand Down
3 changes: 2 additions & 1 deletion dist/ax5core.js
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,8 @@
var
result = false
;
if (O instanceof Date && !isNaN(O.valueOf())) {
if(!O){ }
else if (O instanceof Date && !isNaN(O.valueOf())) {
result = true;
}
else {
Expand Down
2 changes: 1 addition & 1 deletion dist/ax5core.min.js

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,6 +1,6 @@
{
"name": "ax5core",
"version": "0.7.4",
"version": "0.7.5",
"description": "`ax5core` is a collection of utility functions that have been designed for use in ax5ui",
"license": "MIT",
"repository": {
Expand Down
3 changes: 2 additions & 1 deletion src/ax5-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -763,7 +763,8 @@
var
result = false
;
if (O instanceof Date && !isNaN(O.valueOf())) {
if(!O){ }
else if (O instanceof Date && !isNaN(O.valueOf())) {
result = true;
}
else {
Expand Down

0 comments on commit 658a71d

Please sign in to comment.