From 2554871c643c8dab361abb899271770f38e419fd Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 5 Jul 2014 11:50:48 -0500 Subject: [PATCH] Move `_.template` comment on `.source`. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 522c82202..1b6b80e2b 100644 --- a/lodash.js +++ b/lodash.js @@ -8175,11 +8175,11 @@ 'return __p\n}'; var result = attempt(function() { - // provide the compiled function's source by its `toString` method or - // the `source` property as a convenience for inlining compiled templates return Function(importsKeys, 'return ' + source + sourceURL).apply(undefined, importsValues); }); + // provide the compiled function's source by its `toString` method or + // the `source` property as a convenience for inlining compiled templates result.source = source; if (result instanceof Error) { throw result;