File: control

package info (click to toggle)
node-simple-swizzle 0.2.2-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: javascript: 21; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 1,043 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
Source: node-simple-swizzle
Section: javascript
Priority: optional
Maintainer: Debian Javascript Maintainers <pkg-javascript-devel@lists.alioth.debian.org>
Uploaders: Pirate Praveen <praveen@debian.org>
Build-Depends: coffeescript <!nocheck>
 , debhelper-compat (= 13)
 , dh-sequence-nodejs
 , mocha <!nocheck>
 , node-is-arrayish <!nocheck>
 , node-should <!nocheck>
Standards-Version: 4.6.1
Vcs-Browser: https://salsa.debian.org/js-team/node-simple-swizzle
Vcs-Git: https://salsa.debian.org/js-team/node-simple-swizzle.git
Homepage: https://github.com/qix-/node-simple-swizzle
Testsuite: autopkgtest-pkg-nodejs
Rules-Requires-Root: no

Package: node-simple-swizzle
Architecture: all
Depends: ${misc:Depends}
 , node-is-arrayish
Multi-Arch: foreign
Description: Simply swizzle your arguments
 This module can be used to swizzle your function arguments; ie, pass in mixed
 arrays/values and get a clean array. For example, if you swizzle
 (1, [2, 3], 4), then you get [1, 2, 3, 4].
 .
 Node.js is an event-based server-side JavaScript engine.