scale top-level property
final
A dictionary of scales: a function that given a scale name (without tonic) returns an array of intervals
@function
@example
import { scale } from "tonal-dictionary"
scale("major") // => "1P", "2M", ...
scale.names(); // => "major", ...
Implementation
final scale = Dictionary(sdata);