From 6713757004687f748cc3fe9bef23746888cb65a4 Mon Sep 17 00:00:00 2001 From: "S. Elliott Johnson" Date: Mon, 8 May 2023 22:16:41 -0600 Subject: [PATCH] Lint and format src/runtime/motion/utils.js --- src/runtime/motion/utils.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/runtime/motion/utils.js b/src/runtime/motion/utils.js index c334117348..f957bdd335 100644 --- a/src/runtime/motion/utils.js +++ b/src/runtime/motion/utils.js @@ -2,9 +2,5 @@ * @returns {boolean} */ export function is_date(obj) { - return Object.prototype.toString.call(obj) === '[object Date]'; + return Object.prototype.toString.call(obj) === '[object Date]'; } - - - -