lead.js icon indicating copy to clipboard operation
lead.js copied to clipboard

lists as "series lists"

Open also opened this issue 12 years ago • 1 comments

averageSeries [q('a'), q('b'), q('c')]

throws TypeError: illegal argument [object Object],[object Object],[object Object]

also avatar Jun 02 '13 06:06 also

not sure I should actually do this.

also,

averageSeries [q('a'), q('b'), q('c')]...
# ☞

TypeError: Object function () {
        var arg, args;
        args = 1 <= arguments.length ? __slice.call(arguments, 0) : [];
        return (function(func, args, ctor) {
          ctor.prototype = func.prototype;
          var child = new ctor, result = func.apply(child, args);
          return Object(result) === result ? result : child;
        })(lead.type.f, [name].concat(__slice.call((function() {
          var _k, _len2, _results;

          _results = [];
          for (_k = 0, _len2 = args.length; _k < _len2; _k++) {
            arg = args[_k];
            _results.push(process_arg(arg));
          }
          return _results;
        })())), function(){});
      } has no method 'apply'
    at eval (console-coffeescript.js:1:15)

also avatar Jul 13 '13 04:07 also