You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gaoshuguang 4b3ed4c085 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
..
.npmignore 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
.travis.yml 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
LICENSE 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
README.md 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
example.js 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
index.js 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
package.json 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago

README.md

all

callback when all callbacks have fired.

<img src=https://secure.travis-ci.org/dominictarr/all.png?branch=master>

var all = require('all')
var after = all(function () {
  console.log('done')
})

function doSomething(n, cb) {
  setTimeout(function () {
    console.log('N', n)
  }, Math.random() * 100)
}

doSomething(1, cb())
doSomething(2, cb())
doSomething(3, cb())
doSomething(4, cb())

License

MIT