Comparing version 1.0.27 to 1.0.28
@@ -890,6 +890,12 @@ /* | ||
} | ||
}; | ||
} | ||
isnull(obj) { | ||
return (obj === undefined || obj === null); | ||
}; | ||
} | ||
ifnull(obj, _default = null) { | ||
return !this.isnull(obj) ? obj : _default | ||
} | ||
convertToInt(nmdata) { | ||
@@ -1305,3 +1311,3 @@ nmdata = nmdata.trim(); | ||
return _options; | ||
return rv + _options; | ||
@@ -1308,0 +1314,0 @@ if (arr !== undefined && arr !== null && arr.length > 0) { |
{ | ||
"name": "px-core", | ||
"version": "1.0.27", | ||
"version": "1.0.28", | ||
"description": "px-core offers many short uses to make javascript easy to use. For example, it includes ajax, crypto, search, insert, delete and sort in json, Array and String prototypes, input - replace and focus events, and many utilities.", | ||
@@ -5,0 +5,0 @@ "main": "core.js", |
120715
2776