diff --git a/index.js b/index.js index 068c377..3a6320b 100644 --- a/index.js +++ b/index.js @@ -20,7 +20,7 @@ Challenge.create = function (options) { results.create = undefined; Object.keys(defaults).forEach(function (key) { - if ('undefined' !== typeof options[key]) { + if ('undefined' === typeof options[key]) { options[key] = defaults[key]; } });