> Run an ordered series of functions before and after execution of a function.
npm install outlet> Run an ordered series of functions before and after execution of a function.
```
npm i -S outlet
`js`
const container = {}
const outlet = new Outlet(container)
outlet.before('foo', async () => {})
outlet.after('foo', async () => {})
outlet.run('foo', async () => {})
`bash``
gulp lib:compile && node lib/__bench__/index.js