UNPKG

hubot-airnow-gov

Version:

Retrieve air quality scores for locations in the United States.

22 lines (20 loc) 679 B
const fs = require('fs'); const path = require('path'); module.exports = function (robot, scripts) { const scriptsPath = path.resolve(__dirname, 'src'); if (fs.existsSync(scriptsPath)) { return (() => { const result = []; for (const script of Array.from(fs.readdirSync(scriptsPath).sort())) { if ((scripts != null) && !Array.from(scripts).includes('*')) { if (Array.from(scripts).includes(script)) { result.push(robot.loadFile(scriptsPath, script)); } else { result.push(undefined); } } else { result.push(robot.loadFile(scriptsPath, script)); } } return result; })(); } };