UNPKG

@typedin/music-utilities

Version:

A set of resources and modules I use to develop music applications.

51 lines 1.96 kB
import { getAlterationForAugmentedInterval, getAlterationForDiminishedInterval, getAlterationForMajorInterval, getAlterationForMinorInterval, } from "./getAlteration.js"; import { getName } from "./getName.js"; import { getNoteOctave } from "./getNoteOctave.js"; const specialCases = { up: ["D", "E", "G", "A", "B"], down: ["C", "D", "F", "G", "A"], }; const notesThatMakeOctaveChange = { up: ["D", "E", "F", "G", "A", "B"], down: ["C", "D", "E", "F", "G", "A"], }; const semitones = { normal: { up: 11, down: 1, }, special: { up: 10, down: 2, }, }; function DiminishedSeventh(note, direction = "up") { return { name: getName(note, direction, semitones, specialCases), alteration: getAlterationForDiminishedInterval(note, direction, specialCases), octave: getNoteOctave(note, notesThatMakeOctaveChange[direction], direction), }; } function MinorSeventh(note, direction = "up") { return { name: getName(note, direction, semitones, specialCases), alteration: getAlterationForMinorInterval(note, direction, specialCases), octave: getNoteOctave(note, notesThatMakeOctaveChange[direction], direction), }; } function MajorSeventh(note, direction = "up") { return { name: getName(note, direction, semitones, specialCases), alteration: getAlterationForMajorInterval(note, direction, specialCases), octave: getNoteOctave(note, notesThatMakeOctaveChange[direction], direction), }; } function AugmentedSeventh(note, direction = "up") { return { name: getName(note, direction, semitones, specialCases), alteration: getAlterationForAugmentedInterval(note, direction, specialCases), octave: getNoteOctave(note, notesThatMakeOctaveChange[direction], direction), }; } export { DiminishedSeventh, MajorSeventh, MinorSeventh, AugmentedSeventh }; //# sourceMappingURL=Seventh.js.map