From c2357806119d800563499af4455485af85fa3ca4 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Wed, 12 Nov 2014 18:37:32 +1100 Subject: [PATCH] move down 6to5-node util declaration --- bin/_6to5-node | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/_6to5-node b/bin/_6to5-node index 78f0f2fafe..89faa4364b 100644 --- a/bin/_6to5-node +++ b/bin/_6to5-node @@ -1,10 +1,10 @@ #!/usr/bin/env node var commander = require("commander"); -var util = require("../lib/6to5/util"); var path = require("path"); var repl = require("repl"); var to5 = require("../lib/6to5"); +var util = require("../lib/6to5/util"); var vm = require("vm"); var _ = require("lodash");