This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function myCustomDeck(channel, deck) { | |
var forceScratch = false; | |
// CONTROLLER SETUP | |
deck.e1.setup = deck.e1.release = encoderWiper(deck.e1); | |
deck.e2.setup = deck.e2.release = encoderWiper(deck.e2); | |
deck.e3.setup = deck.e3.release = encoderWiper(deck.e3); | |
deck.e4.setup = deck.e4.release = encoderWiper(deck.e4); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simple wrapper template to join multiple Node.js module files into one to | |
// create libraries to work on browsers. | |
// | |
// Tokens: | |
// | |
// __name__ -> replace with library name | |
// '__aliases__' -> replace with object which contains aliases definition | |
// '__modules__' -> replace with object which contains modules definition | |
// | |
// Each module must be wrapped in a definer function like it: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var apostrophed = /'(|([^'\\]+|\\[^']|\\')*)'/ | |
var quoted = /"(|([^"\\]+|\\[^"]|\\")*)"/ |