summaryrefslogtreecommitdiffstats
path: root/src/Controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/Controller.js')
-rw-r--r--src/Controller.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Controller.js b/src/Controller.js
index a48d946..e3f2ab9 100644
--- a/src/Controller.js
+++ b/src/Controller.js
@@ -17,7 +17,7 @@ function makeSetterGetter (k, f) {
}
}
-let easing = {
+export let easing = {
'-': function (pos) { return pos },
'<>': function (pos) { return -Math.cos(pos * Math.PI) / 2 + 0.5 },
'>': function (pos) { return Math.sin(pos * Math.PI / 2) },