@lijuhong1981/jscheck 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lijuhong1981/jscheck",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "> TODO: description",
5
5
  "author": "lijuhong1981 <lijuhong@hotmail.com>",
6
6
  "homepage": "https://github.com/lijuhong1981/jslibs#readme",
@@ -8,4 +8,4 @@ function getDefinedValue(...args) {
8
8
  };
9
9
 
10
10
  export default getDefinedValue;
11
- export { getDefinedValue };
11
+ export { getDefinedValue as definedValue, getDefinedValue };
@@ -8,4 +8,4 @@ function getValidValue(...args) {
8
8
  };
9
9
 
10
10
  export default getValidValue;
11
- export { getValidValue };
11
+ export { getValidValue, getValidValue as validValue };
package/src/isDefined.js CHANGED
@@ -3,4 +3,4 @@ function isDefined(value) {
3
3
  };
4
4
 
5
5
  export default isDefined;
6
- export { isDefined };
6
+ export { isDefined as defined, isDefined };