fix linting errors

This commit is contained in:
Sebastian McKenzie 2015-02-01 16:43:42 +11:00
parent 41349afea3
commit db5bf1749b
2 changed files with 1 additions and 2 deletions

View File

@ -4,7 +4,6 @@ var buildHelpers = require("./build-helpers");
var generator = require("./generation");
var util = require("./util");
var t = require("./types");
var _ = require("lodash");
module.exports = function () {
var namespace = t.identifier("to5Runtime");

View File

@ -42,7 +42,7 @@ each(Buffer.prototype, function (fn, key) {
CodeGenerator.normaliseOptions = function (code, opts) {
var style = " ";
if (code) {
var style = detectIndent(code).indent;
style = detectIndent(code).indent;
if (style && style !== " ") style = " ";
}