@nuskin/ns-common-lib
Advanced tools
Comparing version 1.4.0 to 1.4.1
@@ -0,1 +1,12 @@ | ||
## [1.4.1](https://code.tls.nuskin.io/ns-am/utility/npm/ns-common-lib/compare/v1.4.0...v1.4.1) (2021-05-18) | ||
### Chore | ||
* added docs to isString (#CX12-3628) ([e3047ac](https://code.tls.nuskin.io/ns-am/utility/npm/ns-common-lib/commit/e3047ac873c0cc7df1b9e121986a297fd31a196b)), closes [#CX12-3628](https://code.tls.nuskin.io/ns-am/utility/npm/ns-common-lib/issues/CX12-3628) | ||
### Fix | ||
* Steel Curtain publish change (#CCPO1-275) ([d91cfe9](https://code.tls.nuskin.io/ns-am/utility/npm/ns-common-lib/commit/d91cfe92d9bae0678a49cf3c10744c9029809513)), closes [#CCPO1-275](https://code.tls.nuskin.io/ns-am/utility/npm/ns-common-lib/issues/CCPO1-275) | ||
# [1.4.0](https://code.tls.nuskin.io/ns-am/utility/npm/ns-common-lib/compare/v1.3.0...v1.4.0) (2021-05-12) | ||
@@ -2,0 +13,0 @@ |
{ | ||
"name": "@nuskin/ns-common-lib", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "This project contains shared common models and code between the backend and frontend.", | ||
@@ -30,3 +30,6 @@ "main": "src/index.js", | ||
"prettier": "1.19.1" | ||
} | ||
}, | ||
"files": [ | ||
"src/" | ||
] | ||
} |
"use strict"; | ||
/** | ||
* Checks if the value is a string. | ||
* @param {*} value | ||
* @returns {boolean} | ||
*/ | ||
function isString(value) { | ||
@@ -4,0 +9,0 @@ return typeof value === "string" || value instanceof String; |
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
13874
12
334