UNPKG
reducers
Version:
latest (3.0.0-alpha)
3.0.0-alpha
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
0.2.1
0.2.0
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.3
0.0.2
0.0.1
Library for higher-order manipulation of collections
github.com/Gozala/reducers
Gozala/reducers
reducers
/
test
/
util
/
lazy.js
10 lines
(6 loc)
•
134 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
var
map =
require
(
"../../map"
)
function
lazy
(
f
) {
return
map
(
1
,
function
(
) {
return
f
() }) }
module
.
exports
= lazy