Skip to content

Commit 68722eb

Browse files
Added each helper
1 parent 8f04b92 commit 68722eb

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const processProps = require('./process-props');
1010
const processAttributes = require('./process-attributes');
1111
const {processPushes, processStacks} = require('./process-stacks');
1212
const {setFilledSlots, processSlotContent, processFillContent} = require('./process-slots');
13+
const each = require('lodash/each');
1314
const defaults = require('lodash/defaults');
1415
const assignWith = require('lodash/assignWith');
1516
const mergeWith = require('lodash/mergeWith');
@@ -57,6 +58,7 @@ module.exports = (options = {}) => tree => {
5758
options.attrsParserRules = options.attrsParserRules || {};
5859
options.strict = typeof options.strict === 'undefined' ? true : options.strict;
5960
options.utilities = options.utilities || {
61+
each,
6062
defaults,
6163
assign: assignWith,
6264
merge: mergeWith,

0 commit comments

Comments
 (0)