@supercharge/goodies
Advanced tools
Comparing version 1.6.1 to 1.6.2
# Changelog | ||
## [1.6.2](https://github.com/supercharge/goodies/compare/v1.6.1...v1.6.2) - 2020-12-10 | ||
### Fixed | ||
- fixed `Boolean` method return types to `boolean` | ||
## [1.6.1](https://github.com/supercharge/goodies/compare/v1.6.0...v1.6.1) - 2020-12-10 | ||
### Fixed | ||
- fixed overloaded method typings for `tap` and `upon` | ||
## [1.6.0](https://github.com/supercharge/streams/compare/v1.5.1...v1.6.0) - 2020-12-10 | ||
@@ -5,0 +17,0 @@ |
@@ -72,3 +72,3 @@ export declare class Goodies { | ||
*/ | ||
isPromise(promise?: any): Boolean; | ||
isPromise(promise?: any): boolean; | ||
/** | ||
@@ -81,3 +81,3 @@ * Determine whether the given `input` is a function. | ||
*/ | ||
isFunction(input: any): Boolean; | ||
isFunction(input: any): boolean; | ||
/** | ||
@@ -90,3 +90,3 @@ * Determine whether the given `func` is an async function. | ||
*/ | ||
isAsyncFunction(input: any): Boolean; | ||
isAsyncFunction(input: any): boolean; | ||
/** | ||
@@ -93,0 +93,0 @@ * Runs the given `callback` if the `predicate` is `null` or `undefined`. |
@@ -52,3 +52,3 @@ /** | ||
*/ | ||
export declare function isFunction(input?: any): Boolean; | ||
export declare function isFunction(input?: any): boolean; | ||
/** | ||
@@ -65,3 +65,3 @@ * Determine whether the given `promise` is a Promise. | ||
*/ | ||
export declare function isPromise(promise?: any): Boolean; | ||
export declare function isPromise(promise?: any): boolean; | ||
/** | ||
@@ -74,3 +74,3 @@ * Determine whether the given `input` is an async function. | ||
*/ | ||
export declare function isAsyncFunction(input: any): Boolean; | ||
export declare function isAsyncFunction(input: any): boolean; | ||
/** | ||
@@ -77,0 +77,0 @@ * Runs the given `callback` if the `predicate` is `null` or `undefined`. |
{ | ||
"name": "@supercharge/goodies", | ||
"description": "Async utility functions for Node.js and JavaScript", | ||
"version": "1.6.1", | ||
"version": "1.6.2", | ||
"author": "Marcus Pöhls <marcus@superchargejs.com>", | ||
@@ -6,0 +6,0 @@ "bugs": { |
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
20262