From 09dd3a8fea3826a27b6e3ef1bf8789c626d38709 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Mon, 15 Feb 2016 23:06:28 -0800 Subject: [PATCH] Remove `noConflict` call from the node fp module template. --- lib/fp/template/modules/fp.jst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fp/template/modules/fp.jst b/lib/fp/template/modules/fp.jst index d8887e0fe..39196b993 100644 --- a/lib/fp/template/modules/fp.jst +++ b/lib/fp/template/modules/fp.jst @@ -1,2 +1,2 @@ -var _ = require('./lodash').noConflict().runInContext(); +var _ = require('./lodash').runInContext(); module.exports = require('./fp/convert')(_);