From 4f5f187cbe3f9b115cf24a4b144d771d446d50dc Mon Sep 17 00:00:00 2001 From: Richard Harris Date: Mon, 31 Dec 2018 20:17:18 -0500 Subject: [PATCH] fix easing.mjs --- easing.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easing.mjs b/easing.mjs index 23579da891..759c1046e5 100644 --- a/easing.mjs +++ b/easing.mjs @@ -3,7 +3,7 @@ Adapted from https://github.com/mattdesl Distributed under MIT License https://github.com/mattdesl/eases/blob/master/LICENSE.md */ -import { identity as linear } from 'svelte/internal'; +export { identity as linear } from './internal'; export function backInOut(t) { var s = 1.70158 * 1.525;