Extended Qoopido.demand module with configuration settings - see https://github.com/dlueth/qoopido.demand for further details
(function() {
'use strict';
function definition(demand, provide, path, isObject) {
var settings;
function onPostConfigure(options) {
settings = isObject(options) ? options : {};
}
demand.on('postConfigure:' + path, onPostConfigure);
function MyExtendedModule() {
}
MyExtendedModule.prototype = {
};
return MyExtendedModule();
}
provide([ 'demand', 'provide', 'path', '/demand/validator/isObject' ], definition);
}());