simple photo gallery curation
npm install gallery-curator###installation
``javascipt`
npm install gallery-curator
###usage
`javascript
var curator = require('gallery-curator')();
curator.curate('./photos');
// log the collection
console.log(curator.collection)
// result
[ { name: 'album', photos: [ [Object], [Object] ] },
{ name: 'album2', photos: [ [Object], [Object] ] },
{ name: 'album3', photos: [ [Object] ] } ]
``