UNPKG
xbind
Version:
latest (2.0.0)
2.0.0
1.0.2
1.0.1
1.0.0
0.4.0
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.2
0.1.1
Sugar way to adapt the arguments signature of functions
github.com/zoubin/xbind
zoubin/xbind
xbind
/
lib
/
identity.js
9 lines
(6 loc)
•
104 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
module
.
exports
= identity;
function
identity
(
o
) {
return
function
(
) {
return
o; }; }