From 3ea67a0d96d065bf53ab7aa310fb7b08601e1d12 Mon Sep 17 00:00:00 2001 From: Rafael Hengles Date: Fri, 9 Jan 2015 17:19:29 -0200 Subject: [PATCH] fix syntax style --- src/precompile-cjs-module.js | 2 +- src/precompile-global.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/precompile-cjs-module.js b/src/precompile-cjs-module.js index 91000771..5573a674 100644 --- a/src/precompile-cjs-module.js +++ b/src/precompile-cjs-module.js @@ -9,4 +9,4 @@ function precompileCjsModule(name, template, opts) { return out; } -module.exports = precompileCjsModule; +module.exports = precompileCjsModule; \ No newline at end of file diff --git a/src/precompile-global.js b/src/precompile-global.js index f06e3592..9525236f 100644 --- a/src/precompile-global.js +++ b/src/precompile-global.js @@ -1,7 +1,7 @@ function precompileGlobal(name, template, opts) { opts = opts || {}; - name = JSON.stringify(name); + name = JSON.stringify(name); var out = '(function() {' + '(window.nunjucksPrecompiled = window.nunjucksPrecompiled || {})' + @@ -15,4 +15,4 @@ function precompileGlobal(name, template, opts) { return out; } -module.exports = precompileGlobal; +module.exports = precompileGlobal; \ No newline at end of file