This file contains 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 gangstaEncode(normal) | |
{ | |
return input.replace(/([bcdfghjklmnpqrstvwxz])/ig, function (all, $1) | |
{ | |
return $1 + 'o' + $1.toLowerCase(); | |
}); | |
} | |
function gangstaDecode(gangsta) | |
{ |
This file contains 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
// ============================================================ | |
// $ npm install --save-dev gulp-util node-notifier gulp vinyl-source-stream vinyl-buffer gulp-uglify gulp-sourcemaps gulp-livereload browserify watchify babelify gulp-ruby-sass gulp-autoprefixer gulp-rename | |
// ============================================================ | |
function Workflow() | |
{ | |
// Override workflow settings here | |
// Example: | |
// this.output.directory = 'public_html'; |
NewerOlder