Comparing version 0.1.1 to 0.1.2
{ | ||
"name": "cond-flow", | ||
"version": "0.1.1", | ||
"version": "0.1.2", | ||
"description": "Elixir style cond for easy javascript control flow", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -5,10 +5,10 @@ export as namespace cond; | ||
/** | ||
* Disables strict checking. Default is true. | ||
* Disables strict checking. Default is true. | ||
* @default true | ||
*/ | ||
*/ | ||
strict: boolean | ||
} | ||
declare function cond<T>(pairs: Array<[boolean, T | (() => T)]>, options: CondOptions): T | null | ||
declare function cond<T>(pairs: Array<[boolean, T | (() => T)]>, options?: CondOptions): T | null | ||
export default cond |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
49172
0