I'm having trouble following the README to add this to a project.
Example:
import { createLiveMotion } from 'live_motion';
const { hook: motionHook, handleMotionUpdates } = createLiveMotion();
let Hooks = Object.assign({},
SortableOption.hooks,
Scrolling.hooks,
AudioMp3.hooks,
...motionHook,
)
Errors on page load with JS console error: "Uncaught TypeError: Found non-callable @@iterator"
When I try expressing it more like how I expect it to be, it works.
let Hooks = Object.assign({},
SortableOption.hooks,
Scrolling.hooks,
AudioMp3.hooks,
motionHook
)
Just a simple update to README.md?
I'm having trouble following the README to add this to a project.
Example:
Errors on page load with JS console error: "Uncaught TypeError: Found non-callable @@iterator"
When I try expressing it more like how I expect it to be, it works.
Just a simple update to README.md?