Comparing version 1.0.1 to 1.0.2
@@ -17,3 +17,3 @@ 'use strict'; | ||
code: 100, | ||
error: this.verify[item].error.isUndefined|| | ||
error: this.verify[item].error && this.verify[item].error.isUndefined|| | ||
`${item} is undefined.` | ||
@@ -26,3 +26,3 @@ })) | ||
code: 200, | ||
error: this.verify[item].error.isInvalidType|| | ||
error: this.verify[item].error && this.verify[item].error.isInvalidType|| | ||
`${item} is invalid type.` | ||
@@ -49,2 +49,2 @@ })) | ||
module.expots = JAres; | ||
module.exports = JAres; |
{ | ||
"name": "jares", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"description": "simple json api ewsult format", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
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
18436