Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
/* app/transitions/blue-animation.js */
import { curryTransition } from "liquid-fire";
export default curryTransition('myAnimation', 'blue', { duration: 300 });
/* within app/transitions.js */
this.transition(
this.withinRoute('home'),
this.use('blueAnimation')
);