Skip to content

Instantly share code, notes, and snippets.

@IrakliJani
Created June 2, 2014 15:43
Show Gist options
  • Save IrakliJani/92322899b2577e3fd3d2 to your computer and use it in GitHub Desktop.
Save IrakliJani/92322899b2577e3fd3d2 to your computer and use it in GitHub Desktop.
fs
.readdirSync(__dirname)
.filter(function (file) { return /\.json$/.test(file); })
.reduce(function (config, file) { return extend(config, require(__dirname + '/' + file)); }, {});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment