UNPKG

@typedin/music-utilities

Version:

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

15 lines (14 loc) 1.07 kB
export { cycleOfFifths } from "./cycle-of-fifths/index.js"; export { calculateFrequency } from "./frequency-calculator/index.js"; export { frequencyRatio, frequencyAsPercentage } from "./frequency-ratio/index.js"; export { equal } from "./frequency-ratio/equal.js"; export { pythagorean } from "./frequency-ratio/pythagorean.js"; export { asNote, buildNoteName, getFirstPossibleNoteInScale, getNextAlteration, getNextNoteOnScale, getNoteFromInterval, getPreviousAlteration, indexOfNote, isInScale, isNoteHigher, isNoteLower, parseNoteName, } from "./helpers/index.js"; export { intervalAnalyzer } from "./interval-analyzers/index.js"; export { intervalBuilders } from "./interval-builders/index.js"; export { getRelativeKey } from "./keys/index.js"; export { createNotePosition } from "./note-position/index.js"; export { positionBuilder } from "./position-builders/index.js"; export { scaleAnalyser } from "./scale-analyzers/index.js"; export { ScaleBuilder, beginOn, endOn, spanOver } from "./scale-builders/index.js"; export { transpose } from "./transposition/index.js";