Skip to content

Instantly share code, notes, and snippets.

@scabbiaza
Last active August 29, 2015 14:20
Show Gist options
  • Save scabbiaza/7223df12d72fb5afd2f5 to your computer and use it in GitHub Desktop.
Save scabbiaza/7223df12d72fb5afd2f5 to your computer and use it in GitHub Desktop.
JS sketches
// check that event.target is the one that we need
var isNavbarToogle = event.target.path.filter(function(item) {
return (item.classList.contains("navbar-toggle") || item.classList.contains("navbar-header"));
}).length == 2;
// to know when gulp task is end
Gulp.task("name", function () {
console.log('started >>>');
return .....
.pipe(Gulp.dest("build"))
.on("end", () => {
console.log('ended >>>');
});
});
// remove empty values and dups from the array
let list = ["", "", "a", "b", "a", "", "c", "bb", "d", "", "bb"];
list = list.filter((item, key) => item ? item && list.indexOf(item) == key : false);
console.log('expect: [ "a", "b", "c", "bb", "d" ]');
console.log('list :', list);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment