3 exports.__generic = function (t, a) {
4 var count = 0, o = {}, self = Object(this);
5 a(t.call(self, function (value, i, scope) {
6 a(value, this[i], "Value");
7 a(i, count++, "Index");
8 a(scope, this, "Scope");
9 }, self), -1, "Falsy result");
13 a(t.call(this, function () {
14 return ++count ? o : null;
15 }, this), 1, "Truthy result");