From 19613be86100295984192d5180ce989cd962b7d3 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 14 Feb 2016 23:47:22 -0800 Subject: [PATCH] Add `isArray` to _util.jst. --- lib/fp/template/modules/_util.jst | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/fp/template/modules/_util.jst b/lib/fp/template/modules/_util.jst index e1baf3b0a..6f776a9e9 100644 --- a/lib/fp/template/modules/_util.jst +++ b/lib/fp/template/modules/_util.jst @@ -3,6 +3,7 @@ module.exports = { 'cloneDeep': require('../cloneDeep'), 'curry': require('../curry'), 'forEach': require('../_arrayEach'), + 'isArray': require('../isArray'), 'isFunction': require('../isFunction'), 'iteratee': require('../iteratee'), 'keys': require('../_baseKeys'),