UNPKG
proglib
Version:
latest (1.2.1)
1.2.1
1.2.0
1.1.0
1.0.1
1.0.0
Многофункциональная библиотека
github.com/the-alex-mark/proglib-js
the-alex-mark/proglib-js
proglib
/
lib
/
arrayExpansion.js
14 lines
(12 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
if
(!
Array
.
prototype
.
insertAt
) {
/** * */
Array
.
prototype
.
insertAt
=
function
(
Index, Item
) {
this
.
splice
(
Index
,
0
,
Item
); }; }
module
.
exports
= {
insertAt
:
Array
.
prototype
.
insertAt
}