UNPKG

gumbajs

Version:

Component code generator for projects done with AEM and Sightly.

10 lines (8 loc) 235 B
module.exports = (requiredProperties, config) => { config = config || {}; requiredProperties.forEach(property => { if (!config[property]) { throw new Error(`${property} is required!`); } }); };