From e8b4c488dd5955bafa3fbdbd71cb125f67486415 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Wed, 20 Dec 2023 00:37:34 -0500 Subject: Declare static fields using modern JavaScript syntax (#400) --- ext/js/data/anki-util.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/js/data') diff --git a/ext/js/data/anki-util.js b/ext/js/data/anki-util.js index 1d5272a6..4717d472 100644 --- a/ext/js/data/anki-util.js +++ b/ext/js/data/anki-util.js @@ -22,6 +22,9 @@ import {isObject} from '../core.js'; * This class has some general utility functions for working with Anki data. */ export class AnkiUtil { + /** @type {RegExp} @readonly */ + static _markerPattern = /\{([\w-]+)\}/g; + /** * Gets the root deck name of a full deck name. If the deck is a root deck, * the same name is returned. Nested decks are separated using '::'. @@ -84,6 +87,3 @@ export class AnkiUtil { ); } } - -// eslint-disable-next-line no-underscore-dangle -AnkiUtil._markerPattern = /\{([\w-]+)\}/g; -- cgit v1.2.3