UNPKG

2.15 kBJavaScriptView Raw
1/*! @license Tealight v0.2.0
2
3Copyright 2018 Fisssion LLC.
4
5Permission is hereby granted, free of charge, to any person obtaining a copy
6of this software and associated documentation files (the "Software"), to deal
7in the Software without restriction, including without limitation the rights
8to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9copies of the Software, and to permit persons to whom the Software is
10furnished to do so, subject to the following conditions:
11
12The above copyright notice and this permission notice shall be included in all
13copies or substantial portions of the Software.
14
15THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21SOFTWARE.
22
23*/
24function isNode(x) {
25 return typeof window.Node === 'object'
26 ? x instanceof window.Node
27 : x !== null &&
28 typeof x === 'object' &&
29 typeof x.nodeType === 'number' &&
30 typeof x.nodeName === 'string'
31}
32
33function isNodeList(x) {
34 var prototypeToString = Object.prototype.toString.call(x);
35 var regex = /^\[object (HTMLCollection|NodeList|Object)\]$/;
36
37 return typeof window.NodeList === 'object'
38 ? x instanceof window.NodeList
39 : x !== null &&
40 typeof x === 'object' &&
41 typeof x.length === 'number' &&
42 regex.test(prototypeToString) &&
43 (x.length === 0 || isNode(x[0]))
44}
45
46function index(target, context) {
47 if ( context === void 0 ) context = document;
48
49 if (target instanceof Array) { return target.filter(isNode) }
50 if (isNode(target)) { return [target] }
51 if (isNodeList(target)) { return Array.prototype.slice.call(target) }
52 if (typeof target === 'string') {
53 try {
54 var query = context.querySelectorAll(target);
55 return Array.prototype.slice.call(query)
56 } catch (err) {
57 return []
58 }
59 }
60 return []
61}
62
63export default index;