asyncjs-util
Advanced tools
Comparing version 1.1.3 to 1.2.0
@@ -0,1 +1,2 @@ | ||
const getMaximum = require('./get_maximum'); | ||
const returnResult = require('./return_result'); | ||
@@ -5,2 +6,2 @@ | ||
*/ | ||
module.exports = {returnResult}; | ||
module.exports = {getMaximum, returnResult}; |
@@ -7,2 +7,5 @@ { | ||
"description": "Asyncjs Utilities", | ||
"dependencies": { | ||
"async": "3.2.0" | ||
}, | ||
"devDependencies": { | ||
@@ -25,3 +28,3 @@ "tap": "14.10.5" | ||
}, | ||
"version": "1.1.3" | ||
"version": "1.2.0" | ||
} |
@@ -9,2 +9,19 @@ # Asyncjs Utilities | ||
## getMaximum | ||
Get maximum value through binary search | ||
{ | ||
[accuracy]: <Close Enough Delta Number> | ||
from: <Minimum Number> | ||
to: <Maximum Number> | ||
} | ||
<Async Test Function> ({cursor}, (err, isLow) => {}) => {} | ||
@returns via cbk or Promise | ||
{ | ||
maximum: <Maximum Number> | ||
} | ||
## returnResult | ||
@@ -11,0 +28,0 @@ |
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
9546
11
217
41
1
+ Addedasync@3.2.0
+ Addedasync@3.2.0(transitive)