blob: 9765630fb90417375b033215eb7974b160593cd6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
'use strict';
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
module.exports = function array_search(needle, haystack, argStrict) {
// eslint-disable-line camelcase
// discuss at: http://locutus.io/php/array_search/
// original by: Kevin van Zonneveld (http://kvz.io)
// input by: Brett Zamir (http://brett-zamir.me)
// bugfixed by: Kevin van Zonneveld (http://kvz.io)
// bugfixed by: Reynier de la Rosa (http://scriptinside.blogspot.com.es/)
// test: skip-all
// example 1: array_search('zonneveld', {firstname: 'kevin', middle: 'van', surname: 'zonneveld'})
// returns 1: 'surname'
// example 2: array_search('3', {a: 3, b: 5, c: 7})
// returns 2: 'a'
var strict = !!argStrict;
var key = '';
if ((typeof needle === 'undefined' ? 'undefined' : _typeof(needle)) === 'object' && needle.exec) {
// Duck-type for RegExp
if (!strict) {
// Let's consider case sensitive searches as strict
var flags = 'i' + (needle.global ? 'g' : '') + (needle.multiline ? 'm' : '') + (
// sticky is FF only
needle.sticky ? 'y' : '');
needle = new RegExp(needle.source, flags);
}
for (key in haystack) {
if (haystack.hasOwnProperty(key)) {
if (needle.test(haystack[key])) {
return key;
}
}
}
return false;
}
for (key in haystack) {
if (haystack.hasOwnProperty(key)) {
if (strict && haystack[key] === needle || !strict && haystack[key] == needle) {
// eslint-disable-line eqeqeq
return key;
}
}
}
return false;
};
//# sourceMappingURL=array_search.js.map
|