Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

asyncjs-util

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asyncjs-util - npm Package Compare versions

Comparing version 1.1.3 to 1.2.0

.gitattributes

3

index.js

@@ -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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc