Download the contents of a given directory from a repository on GitHub.
Only works in node 8+ (because async/await is too cool).
Best used from the command line:
> github-download-directory gulpjs/gulp docsOr programatic:
vardownload=require('github-download-directory');download('gulpjs','gulp','docs').then(console.log,console.error);MIT