Guest User

Untitled

a guest
Mar 20th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. function parse_blocks (done) {
  2. BEM_tree = {};
  3. gulp.src(app.blocks)
  4. .pipe(flatmap((stream, file) => {
  5. return stream;
  6. }))
  7. .on("finish", ()=>{done();});
  8. }
Add Comment
Please, Sign In to add comment