-- whitespace

This commit is contained in:
Mariusz Nowak
2013-05-18 10:12:07 +02:00
parent 434b866ec3
commit 53a6304f27

View File

@@ -28,9 +28,7 @@ module.exports = exports = function (core) {
if (isNaN(options.length)) {
length = fn.length;
// Special case
if (options.async && ext.async) {
--length;
}
if (options.async && ext.async) --length;
} else {
length = (options.length === false) ? false : (options.length >>> 0);
}
@@ -38,11 +36,8 @@ module.exports = exports = function (core) {
core(conf, length);
forEach(ext, function (fn, name) {
if (fn.force) {
fn(conf, options);
} else if (options[name]) {
fn(options[name], conf, options);
}
if (fn.force) fn(conf, options);
else if (options[name]) fn(options[name], conf, options);
});
fn = conf.fn;