UNPKG

business-moment

Version:
10 lines (7 loc) 291 B
var fs = require('fs'); var path = require('path'); var Promise = require('bluebird-ff'); var readFileAsync = Promise.promisify(fs.readFile); exports.load = function(country, year, config) { return readFileAsync(path.join(config.staticPath, country, year + '.json')).then(JSON.parse); };