UNPKG
foop
Version:
beta (5.0.0)
latest (5.0.0)
5.0.0
interfaces that describe their intentions.
github.com/fluents/chain-able
fluents/chain-able
foop
/
src
/
deps
/
fp
/
constructInit.js
10 lines
(7 loc)
•
219 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/* istanbul ignore: @TODO */
const
construct =
require
(
'./construct'
)
// adds .init function that is constructN
module
.
exports
=
function
addInit
(
Klass, n =
1
) {
Klass
.
init
=
construct
(n,
Klass
)
// return Klass
}