summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Cully <bjc@spork.org>2025-03-08 15:57:03 -0500
committerBrian Cully <bjc@spork.org>2025-03-08 15:57:03 -0500
commitc2d1932a24793c85397e3cced8717d6b7586cbd9 (patch)
tree8cc2793ae61da71db8968f133456d0fe946b3605
parent6173c554d78d87a8721028a060b279f574eed740 (diff)
downloadchords-c2d1932a24793c85397e3cced8717d6b7586cbd9.tar.gz
chords-c2d1932a24793c85397e3cced8717d6b7586cbd9.zip
js: export the chromatic scale
-rw-r--r--scale.mjs2
1 files changed, 1 insertions, 1 deletions
diff --git a/scale.mjs b/scale.mjs
index 61319df..fe4e5f2 100644
--- a/scale.mjs
+++ b/scale.mjs
@@ -4,7 +4,7 @@ const ringHandler = {
}
};
-const chromaticScale = new Proxy(
+export const chromaticScale = new Proxy(
['A', 'A#', 'B', 'C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#'],
ringHandler);