kute.js/src/core/internals.js
thednp 933d61de19 Changes:
* added ESLint and updated all code base 
* updated SVGPathCommander, CubicBezier, shorter-js, minifill
* updated polyfills
* minor CSS fixes
2021-03-30 09:23:29 +00:00

16 lines
318 B
JavaScript

import add from './add.js';
import remove from './remove.js';
import getAll from './getAll.js';
import removeAll from './removeAll.js';
import { stop } from './render.js';
import linkInterpolation from './linkInterpolation.js';
export default {
add,
remove,
getAll,
removeAll,
stop,
linkInterpolation,
};