updux/src/index.js

9 lines
153 B
JavaScript
Raw Normal View History

2019-10-17 15:15:10 +00:00
import fp from 'lodash/fp';
import u from 'updeep';
2019-10-21 21:17:56 +00:00
import Updux from './updux';
2019-10-17 15:15:10 +00:00
2019-10-22 03:13:40 +00:00
export default function updux(config) {
2019-10-21 21:17:56 +00:00
return new Updux(config);
2019-10-17 15:15:10 +00:00
}