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

serial-loop

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

serial-loop - npm Package Compare versions

Comparing version 0.0.0 to 0.0.1-security

29

package.json
{
"name": "serial-loop",
"version": "0.0.0",
"description": "Async serial loop",
"version": "0.0.1-security",
"description": "",
"main": "index.js",
"scripts": {
"test": "prova"
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"prova": "*"
},
"keywords": [
"serial",
"async",
"loop"
],
"repository": {
"url": "git@github.com:azer\/serial-loop.git",
"type": "git"
"type": "git",
"url": "git+https://github.com/npm/security-holder.git"
},
"author": "azer",
"license": "BSD"
}
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/npm/security-holder/issues"
},
"homepage": "https://github.com/npm/security-holder#readme"
}

@@ -1,43 +0,9 @@

## serial-loop
# Security holding package
Async serial loop. See also [parallel-loop](http://github.com/azer/parallel-loop)
This package name is not currently in use, but was formerly occupied
by a popular package. To avoid malicious use, npm is hanging on to
the package name, but loosely, and we'll probably give it to you if
you want it.
## Install
```bash
$ npm install serial-loop
```
## Usage
```js
var loop = require('serial-loop')
loop(10, each, function (error) {
console.log('done, error? ', error)
});
function each (next, i) {
setTimeout(function () {
console.log(i)
next()
}, 1000)
}
```
Will output:
```
0
1
2
3
3
4
5
6
7
8
9
end
```
You may adopt this package by contacting support@npmjs.com and
requesting the name.
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