Skip to content

Instantly share code, notes, and snippets.

@othiym23
Forked from phated/need-to-time.js
Created January 14, 2014 04:04
Show Gist options
  • Save othiym23/8412850 to your computer and use it in GitHub Desktop.
Save othiym23/8412850 to your computer and use it in GitHub Desktop.
function task1(){
// some logic
}
function task2(){
task1();
// other logic
}
gulp.task('task1', task1);
gulp.task('task2', task2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment