UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

15 lines (13 loc) 345 B
var IS_GLOB = /[\{\}\*\[\]]/; /** * Ensures the provided list of files does not contain any glob expressions. * * @private */ module.exports = function ensureNoGlob(listName, list) { (list || []).forEach(function(a) { if (IS_GLOB.test(a)) { throw new TypeError(listName + ' cannot contain a glob, `' + a + '`'); } }); };