File: control

package info (click to toggle)
node-async 0.8.0-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 436 kB
  • sloc: javascript: 4,776; makefile: 47; sh: 4
file content (49 lines) | stat: -rw-r--r-- 1,902 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Source: node-async
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Jonas Smedegaard <dr@jones.dk>
Build-Depends:
 debhelper-compat (= 13),
 uglifyjs,
 nodeunit,
Standards-Version: 4.5.1
Homepage: https://github.com/caolan/async
Vcs-Git: https://salsa.debian.org/js-team/node-async.git
Vcs-Browser: https://salsa.debian.org/js-team/node-async
Rules-Requires-Root: no

Package: libjs-async
Architecture: all
Depends: ${misc:Depends},
Recommends: javascript-common,
Multi-Arch: foreign
Description: functions and patterns for asynchronous code - web browsers
 Async is a utility module which provides straight-forward, powerful
 functions for working with asynchronous Javascript.
 .
 Async provides around 20 functions that include the usual 'functional'
 suspects (map, reduce, filter, forEach…) as well as some common
 patterns for asynchronous control flow (parallel, series, waterfall…).
 All these functions assume you follow the Node convention of providing
 a single callback as the last argument of your async function.
 .
 This provides async for use directly in web browsers.

Package: node-async
Architecture: all
Depends: ${misc:Depends},
 libjs-async,
 nodejs
Description: functions and patterns for asynchronous code - Node.js
 Async is a utility module which provides straight-forward, powerful
 functions for working with asynchronous Javascript.
 .
 Async provides around 20 functions that include the usual 'functional'
 suspects (map, reduce, filter, forEach…) as well as some common
 patterns for asynchronous control flow (parallel, series, waterfall…).
 All these functions assume you follow the Node convention of providing
 a single callback as the last argument of your async function.
 .
 This provides async for use with Node.js -
 an event-based server-side JavaScript engine.