7 lines
135 B
JavaScript
7 lines
135 B
JavaScript
function makeAnimationInstant(options) {
|
|
options.duration = 0;
|
|
options.type = "keyframes";
|
|
}
|
|
|
|
export { makeAnimationInstant };
|