valde/static/js/settings.js

8 lines
256 B
JavaScript
Raw Normal View History

2024-01-25 23:08:03 +00:00
import { pick } from "./modules/utils.js"
export const NOTES = ["A3", "A2", "C4", "C3", "F3", "F2"]
export const NOTE = pick(NOTES)
export const SPACING = ["7h", "8h", "9h", "10h"]
export const SPACE = SPACING[Math.floor(Math.random() * SPACING.length)]