add-functions
Add two functions together and choose when the original one gets called!
require('add-functions')(a, (callOriginal) => { callOriginal(); foo()})
Adds one or more functions together. Functions will take an additional callOriginal argument. This function will call the function before yours in the added functions.
const a = n + 1const b = n + + 1 const c = // -> 2
const asynchronouslyAdd2 =