We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 971b018 commit ad2513eCopy full SHA for ad2513e
src/lib/usa_location_names.js
@@ -1,7 +1,7 @@
1
'use strict';
2
3
// Mapping of lowercase full US state names to two-letter abbreviations
4
-export const usaLocationList = {
+const usaLocationList = {
5
alabama: 'AL',
6
alaska: 'AK',
7
arizona: 'AZ',
@@ -57,4 +57,9 @@ export const usaLocationList = {
57
wyoming: 'WY'
58
};
59
60
-export const usaLocationAbbreviations = new Set(Object.values(usaLocationList));
+const usaLocationAbbreviations = new Set(Object.values(usaLocationList));
61
+
62
+module.exports = {
63
+ usaLocationAbbreviations,
64
+ usaLocationList
65
+};
0 commit comments