Function toRomanNumerals

  • Given a tonic and a chord list with leadsheet symbols notation, return the chord list with roman numeral notation

    Parameters

    Returns string[]

    Example

    toRomanNumerals("C", ["CMaj7", "Dm7", "G7"]);
    // => ["IMaj7", "IIm7", "V7"]