Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Matheus-de-Souza/6930340a2e673f396bbdf7c807b74394 to your computer and use it in GitHub Desktop.
Save Matheus-de-Souza/6930340a2e673f396bbdf7c807b74394 to your computer and use it in GitHub Desktop.
A little gist to copy and paste your chords and transposing it
const Transposer = require('chord-transposer');
const ncp = require("copy-paste");
const cifra = ncp.paste();
const result = Transposer.transpose(cifra).fromKey('G').toKey('A').toString();
ncp.copy(result, () => {
console.log('copied!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment