diff options
| author | Brian Cully <bjc@spork.org> | 2025-03-10 16:24:38 -0400 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-03-10 16:24:38 -0400 |
| commit | 9efcd9829d2d9461d206f4dc5e588b6578576589 (patch) | |
| tree | d051ed2f8c3d9cca403e4a1a2c8f364796ab89e6 | |
| parent | 7928e4a7d3311cc1325d413c53ff349e5ef816b5 (diff) | |
| download | chords-9efcd9829d2d9461d206f4dc5e588b6578576589.tar.gz chords-9efcd9829d2d9461d206f4dc5e588b6578576589.zip | |
scale: don't export chromaticScale
| -rw-r--r-- | scale.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -100,7 +100,7 @@ const ringHandler = { } }; -export const chromaticScale = new Proxy( +const chromaticScale = new Proxy( ['C', 'C♯', 'D', 'D♯', 'E', 'F', 'F♯', 'G', 'G♯', 'A', 'A♯', 'B'], ringHandler); |
