UNPKG
pogojs
Version:
latest (1.0.0)
1.0.0
0.1.0
0.0.0
0.0.0-development
Library to accompany the Pogo stack
github.com/DaveOrDead/pogojs
DaveOrDead/pogojs
pogojs
/
dist
/
utils
/
each.js
12 lines
(10 loc)
•
227 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
var
each =
function
each
(
array, func
) {
for
(
var
i =
0
; i < array.
length
; i++) {
func
(array[i], i); } };
exports
.
default
= each;