MCPcopy
hub / github.com/aheckmann/gm / args

Function args

lib/command.js:24–37  ·  view source on GitHub ↗
(prop)

Source from the content-addressed store, hash-verified

22module.exports = function (proto) {
23
24 function args (prop) {
25 return function args () {
26 var len = arguments.length;
27 var a = [];
28 var i = 0;
29
30 for (; i < len; ++i) {
31 a.push(arguments[i]);
32 }
33
34 this[prop] = this[prop].concat(a);
35 return this;
36 }
37 }
38
39 function streamToUnemptyBuffer(stream, callback) {
40 var done = false

Callers 1

command.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…