UNPKG

177 BJavaScriptView Raw
1import compose from 'lodash/flowRight';
2
3import assets from './middleware/assets';
4
5export default function(options = { }) {
6 return compose(
7 assets(options.assets)
8 );
9}