Invoke
Packhouse Invoke
Action
packhouse.tool('math/sum').action(10, 20, (error, result) => {
console.log(result) // 30
})Promise
packhouse.tool('math/sum').promise(10, 20).then(result => {
console.log(result) // 30
})Per Invoke
Pack
In Include
No Good
Action
Promise
Always
Promise
Last updated