-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathindex.js
More file actions
78 lines (61 loc) · 1.36 KB
/
Copy pathindex.js
File metadata and controls
78 lines (61 loc) · 1.36 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*☭
## array-back
Takes any input and guarantees an array back.
- Converts array-like objects (e.g. `arguments`, `Set`) to a real array.
- Converts `undefined` to an empty array.
- Converts any another other, singular value (including `null`, objects and iterables other than `Set`) into an array containing that value.
- Ignores input which is already an array.
#### Example
```js
> arrayBack(undefined)
[]
> arrayBack(null)
[ null ]
> arrayBack(0)
[ 0 ]
> arrayBack([ 1, 2 ])
[ 1, 2 ]
> arrayBack(new Set([ 1, 2 ]))
[ 1, 2 ]
> function f(){ return arrayBack(arguments); }
> f(1,2,3)
[ 1, 2, 3 ]
```
*/
function isObject (input) {
return typeof input === 'object' && input !== null
}
function isArrayLike (input) {
return isObject(input) && typeof input.length === 'number'
}
/*☭
### arrayBack
Takes any input and guarantees an array back.
- **Type:** Exported Synchronous Function
- **Supported runtimes:** Node.Js >= v12
- **Module type:** JavaScript
- **Returns:** `Array`
¬
Param
Type
Description
¬
input
`any`
The input value to convert to an array
¬
࿕
id: Something
*/
function arrayBack (input) {
if (Array.isArray(input)) {
return input
} else if (input === undefined) {
return []
} else if (isArrayLike(input) || input instanceof Set) {
return Array.from(input)
} else {
return [input]
}
}
export default arrayBack