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 gulp = require('gulp'); | |
| var watch = require('gulp-watch'); | |
| var sass = require('gulp-sass'); | |
| var autoprefixer = require('gulp-autoprefixer'); | |
| var cleanCSS = require('gulp-clean-css'); | |
| var rename = require('gulp-rename'); | |
| var ftp = require('gulp-ftp'); | |
| /* */ | |
| var ftpAccess = { |
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 simMath = { | |
| memo:{}, | |
| operation:function(array, method){ | |
| return Array.prototype.join.call(array, method); | |
| }, | |
| calculate:function(array, method){ | |
| return Array.prototype.reduce.call(array, method); | |
| }, | |
| plus: function(){ | |
| var operation = this.operation(arguments, '+'); |
NewerOlder