aboutsummaryrefslogtreecommitdiffstats
path: root/npm_assets/node_modules/luxon/src/zone.js
diff options
context:
space:
mode:
Diffstat (limited to 'npm_assets/node_modules/luxon/src/zone.js')
-rw-r--r--npm_assets/node_modules/luxon/src/zone.js7
1 files changed, 5 insertions, 2 deletions
diff --git a/npm_assets/node_modules/luxon/src/zone.js b/npm_assets/node_modules/luxon/src/zone.js
index 8a5d070..cec0e4f 100644
--- a/npm_assets/node_modules/luxon/src/zone.js
+++ b/npm_assets/node_modules/luxon/src/zone.js
@@ -1,4 +1,3 @@
-/* eslint no-unused-vars: "off" */
import { ZoneIsAbstractError } from "./errors.js";
/**
@@ -23,12 +22,16 @@ export default class Zone {
throw new ZoneIsAbstractError();
}
+ get ianaName() {
+ return this.name;
+ }
+
/**
* Returns whether the offset is known to be fixed for the whole year.
* @abstract
* @type {boolean}
*/
- get universal() {
+ get isUniversal() {
throw new ZoneIsAbstractError();
}