Lines Matching refs:fn

6281 module.exports = function (fn, that, length) {
6282 aFunction(fn);
6283 if (that === undefined) return fn;
6286 return fn.call(that, a);
6289 return fn.call(that, a, b);
6292 return fn.call(that, a, b, c);
6296 return fn.apply(that, arguments);
6674 return (0, _array.arrayReduce)(restFunc, function (acc, fn) {
6675 return fn(acc);
7180 function map(arr, fn) {
7183 res.push(fn(arr[i], i));
7421 function deprecate(msg, fn) {
7447 return fn.apply(this, arguments);
7448 }, fn);
9744 function pickBy(fn, moments) {
9754 if (!moments[i].isValid() || moments[i][fn](res)) {
10148 createDuration.fn = Duration.prototype;
11557 hooks.fn = proto;
12967 input = numbro.fn.unformat(input);
13393 numbro.fn = Numbro.prototype = {
13720 var fn = proto[KEY];
13723 return IS_WEAK && !isObject(a) ? false : fn.call(this, a === 0 ? 0 : a);
13725 return IS_WEAK && !isObject(a) ? false : fn.call(this, a === 0 ? 0 : a);
13727 return IS_WEAK && !isObject(a) ? undefined : fn.call(this, a === 0 ? 0 : a);
13728 } : KEY == 'add' ? function add(a) { fn.call(this, a === 0 ? 0 : a); return this; }
13729 : function set(a, b) { fn.call(this, a === 0 ? 0 : a, b); return this; }
13833 var exports = module.exports = function (iterable, entries, fn, that, ITERATOR) {
13835 var f = ctx(fn, that, entries ? 2 : 1);
19253 var fn = queue[id];
19255 fn();
19263 setTask = function setImmediate(fn) {
19269 invoke(typeof fn == 'function' ? fn : Function(fn), args);
19331 var fn, val;
19332 if (S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
19333 if (typeof (fn = it.valueOf) == 'function' && !isObject(val = fn.call(it))) return val;
19334 if (!S && typeof (fn = it.toString) == 'function' && !isObject(val = fn.call(it))) return val;
22106 var fn = regexp == undefined ? undefined : regexp[MATCH];
22107 return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));
22122 var fn = searchValue == undefined ? undefined : searchValue[REPLACE];
22123 return fn !== undefined
22124 ? fn.call(searchValue, O, replaceValue)
22140 var fn = regexp == undefined ? undefined : regexp[SEARCH];
22141 return fn !== undefined ? fn.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));
22217 var fn = separator == undefined ? undefined : separator[SPLIT];
22218 … return fn !== undefined ? fn.call(separator, O, limit) : $split.call(String(O), separator, limit);
31073 module.exports = function (iterator, fn, value, entries) {
31075 return entries ? fn(anObject(value)[0], value[1]) : fn(value);
31429 jQuery.fn.handsontable = function (action) {
49373 module.exports = function (fn, args, that) {
49376 case 0: return un ? fn()
49377 : fn.call(that);
49378 case 1: return un ? fn(args[0])
49379 : fn.call(that, args[0]);
49380 case 2: return un ? fn(args[0], args[1])
49381 : fn.call(that, args[0], args[1]);
49382 case 3: return un ? fn(args[0], args[1], args[2])
49383 : fn.call(that, args[0], args[1], args[2]);
49384 case 4: return un ? fn(args[0], args[1], args[2], args[3])
49385 : fn.call(that, args[0], args[1], args[2], args[3]);
49386 } return fn.apply(that, args);
49425 var parent, fn;
49428 fn = head.fn;
49431 fn();
49473 return function (fn) {
49474 var task = { fn: fn, next: undefined };