-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy paththunkify.js
33 lines (31 loc) · 1.01 KB
/
thunkify.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const areAnyValuesPromises = require('./_internal/areAnyValuesPromises')
const promiseAll = require('./_internal/promiseAll')
const curry2 = require('./_internal/curry2')
const __ = require('./_internal/placeholder')
const funcApply = require('./_internal/funcApply')
/**
* @name thunkify
*
* @synopsis
* ```coffeescript [specscript]
* thunkify(func function, ...args) -> thunk ()=>func(...args)
* ```
*
* @description
* Create a thunk function from another function and any number of arguments. The thunk function takes no arguments, and when called, executes the other function with the provided arguments. The other function is said to be "thunkified".
*
* ```javascript [playground]
* const add = (a, b) => a + b
*
* const thunkAdd12 = thunkify(add, 1, 2)
*
* console.log(thunkAdd12()) // 3
* ```
*/
const thunkify = (func, ...args) => function thunk() {
if (areAnyValuesPromises(args)) {
return promiseAll(args).then(curry2(funcApply, func, __))
}
return func(...args)
}
module.exports = thunkify