diff --git a/dist/tween.amd.js b/dist/tween.amd.js index 7697fba2..faf96424 100644 --- a/dist/tween.amd.js +++ b/dist/tween.amd.js @@ -9,13 +9,13 @@ define(['exports'], (function (exports) { 'use strict'; return amount; }, In: function (amount) { - return this.None(amount); + return amount; }, Out: function (amount) { - return this.None(amount); + return amount; }, InOut: function (amount) { - return this.None(amount); + return amount; }, }), Quadratic: Object.freeze({ diff --git a/dist/tween.cjs b/dist/tween.cjs index 86c8ee1e..cd31ff66 100644 --- a/dist/tween.cjs +++ b/dist/tween.cjs @@ -11,13 +11,13 @@ var Easing = Object.freeze({ return amount; }, In: function (amount) { - return this.None(amount); + return amount; }, Out: function (amount) { - return this.None(amount); + return amount; }, InOut: function (amount) { - return this.None(amount); + return amount; }, }), Quadratic: Object.freeze({ diff --git a/dist/tween.esm.js b/dist/tween.esm.js index 86a97403..b3ec3189 100644 --- a/dist/tween.esm.js +++ b/dist/tween.esm.js @@ -7,13 +7,13 @@ var Easing = Object.freeze({ return amount; }, In: function (amount) { - return this.None(amount); + return amount; }, Out: function (amount) { - return this.None(amount); + return amount; }, InOut: function (amount) { - return this.None(amount); + return amount; }, }), Quadratic: Object.freeze({ diff --git a/dist/tween.umd.js b/dist/tween.umd.js index 9d1e42b7..c683596e 100644 --- a/dist/tween.umd.js +++ b/dist/tween.umd.js @@ -13,13 +13,13 @@ return amount; }, In: function (amount) { - return this.None(amount); + return amount; }, Out: function (amount) { - return this.None(amount); + return amount; }, InOut: function (amount) { - return this.None(amount); + return amount; }, }), Quadratic: Object.freeze({ diff --git a/src/Easing.ts b/src/Easing.ts index 0627389b..e9ed93bc 100644 --- a/src/Easing.ts +++ b/src/Easing.ts @@ -16,13 +16,13 @@ export const Easing = Object.freeze({ return amount }, In(amount: number): number { - return this.None(amount) + return amount }, Out(amount: number): number { - return this.None(amount) + return amount }, InOut(amount: number): number { - return this.None(amount) + return amount }, }),