1
0
mirror of https://github.com/webslides/WebSlides.git synced 2025-08-18 02:41:37 +02:00

Removing unused code

This commit is contained in:
Antonio Laguna
2017-05-29 22:48:44 +02:00
parent e3b9febbe0
commit ed9c3142b4

View File

@@ -7,13 +7,4 @@ function swing(p) {
return 0.5 - Math.cos(p * Math.PI) / 2;
}
/**
* Linear easing function.
* @param {number} p The percentage of time that has passed.
* @return {number}
*/
function linear(p) {
return p;
}
export default {swing, linear};
export default {swing};