Lines Matching refs:includes

780       if (amd && lodashStable.includes(ui.loaderPath, 'requirejs')) {
1324 includes = _.curry(_.rearg(_.ary(_.includes, 2), 1, 0), 2);
1326 assert.strictEqual(includes('b')(array, 2), true);
1329 includes = _(_.includes).ary(2).rearg(1, 0).curry(2).value();
1330 assert.strictEqual(includes('b')(array, 2), true);
6074 QUnit.module('lodash.find and lodash.includes');
6076 lodashStable.each(['includes', 'find'], function(methodName) {
6078 isIncludes = methodName == 'includes',
6997 if (lodashStable.includes(rightMethods, methodName)) {
7001 if (lodashStable.includes(objectMethods, methodName)) {
7021 var expected = lodashStable.includes(objectMethods, methodName)
7030 else if (lodashStable.includes(objectMethods, methodName)) {
7036 if (lodashStable.includes(rightMethods, methodName)) {
7070 assert.notOk(lodashStable.includes(keys, 'a'));
8171 QUnit.module('lodash.includes');
8184 assert.strictEqual(_.includes(collection, 3), true);
8190 assert.strictEqual(_.includes(collection, 5), false);
8196 assert.strictEqual(_.includes(collection, 2, 1.2), true);
8203 assert.strictEqual(_(collection).includes(3), true);
8214 assert.ok(_(collection).chain().includes(3) instanceof _);
8230 assert.strictEqual(_.includes(collection, 'bc'), true);
8231 assert.strictEqual(_.includes(collection, 'd'), false);
8242 return _.includes(value);
8262 _.includes(string, 1, fromIndex),
8263 _.includes(string, undefined, fromIndex),
8264 _.includes(string, '', fromIndex)
8274 assert.strictEqual(_.includes([1, NaN, 3], NaN), true);
8280 assert.strictEqual(_.includes([-0], 0), true);
8281 assert.strictEqual(_.includes([0], -0), true);
8290 assert.ok(lodashStable.every(values, lodashStable.partial(_.includes, array)));
19946 assert.ok(lodashStable.includes(array, actual));
19969 assert.ok(lodashStable.includes(array, actual));
22561 return lodashStable.includes(value, '__p');
22575 assert.ok(lodashStable.includes(source, '__p'));
22593 return lodashStable.includes(value, 'sourceURL');
26505 'includes',
26843 if (lodashStable.includes(returnArrays, methodName) && methodName != 'sample') {
26897 (!lodashStable.includes(checkFuncs, methodName) || (e.message == FUNC_ERROR_TEXT));
26932 return methodName.length > 2 || lodashStable.includes(shortNames, methodName);