diff --git a/lib/transformer.js b/lib/transformer.js index b0241fd..9769a94 100644 --- a/lib/transformer.js +++ b/lib/transformer.js @@ -1,7 +1,6 @@ var jscrewit = require('jscrewit'); var DEFAULT_OPTIONS = require('./default-options'); -module.exports = function transformer(content, options) { - options = options || DEFAULT_OPTIONS; - return jscrewit.encode(content, options); +module.exports = function transformer(content) { + return jscrewit.encode(content, DEFAULT_OPTIONS); };