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
/* | |
Recursively traverses the given dir and returns a promise that resolves to | |
a list of files. | |
The promise is resolved only after all sub-directories being traversed. | |
*/ | |
var walkAsync = function(path) { | |
return statAsync(path).then(function(stat){ | |
if(stat.isDirectory()){ |
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
3/1 | |
HTML, CSS, Layout | |
3/8 | |
HTML, CSS, Layout | |
Project teams | |
HW1: CSS | |
DUE 3/20 |