From aa7eb9c1c9020e377f67605e0e0f032de41efefe Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Thu, 20 Nov 2014 00:49:01 +1100 Subject: [PATCH] remove unused opts arg --- lib/6to5/file.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/6to5/file.js b/lib/6to5/file.js index f1f0c42768..c7222c989f 100644 --- a/lib/6to5/file.js +++ b/lib/6to5/file.js @@ -11,7 +11,7 @@ var _ = require("lodash"); function File(opts) { this.opts = File.normaliseOptions(opts); - this.moduleFormatter = this.getModuleFormatter(this.opts.modules, this.opts); + this.moduleFormatter = this.getModuleFormatter(this.opts.modules); this.declarations = {}; this.uids = {};