File size: 458 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
// use this module to cherry pick functions into your prototype
// (useful for functions shared between the core and collections, for example)
// e.g.
// let foo = define.foo({ /* params... */ })
import * as util from '../util';
import animation from './animation';
import data from './data';
import events from './events';
let define = {};
[
animation,
data,
events
].forEach(function( m ){
util.assign( define, m );
});
export default define;
|