From a2de9e4e361a141f2fd6b1271218a6b1bbd55095 Mon Sep 17 00:00:00 2001 From: Fluency <93673101+fluencydoc@users.noreply.github.com> Date: Wed, 17 Nov 2021 16:02:31 -0800 Subject: [PATCH] Fixed export-function signature being scrambled. --- src/util-frontend.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/util-frontend.js b/src/util-frontend.js index dff6d679b..87cde3c43 100644 --- a/src/util-frontend.js +++ b/src/util-frontend.js @@ -24,14 +24,14 @@ function getTimezoneOffset(timeZone) { return -offset; } -export /** - * Returns a list of timezones sorted by their offset from UTC. - * @param {Array} timezones - An array of timezone objects. - * @returns {Array} A list of the given timezones sorted by their offset from UTC. - * - * Generated by Trelent - */ -function timezoneList() { +/** +* Returns a list of timezones sorted by their offset from UTC. +* @param {Array} timezones - An array of timezone objects. +* @returns {Array} A list of the given timezones sorted by their offset from UTC. +* +* Generated by Trelent +*/ +export function timezoneList() { let result = []; for (let timezone of timezones) {