valde/static/js/settings.js
2024-01-26 00:08:03 +01:00

8 lines
256 B
JavaScript

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)]