UNPKG

221 BJavaScriptView Raw
1'use strict';
2
3var _ = require('lodash');
4
5function helper(paper) {
6 paper.handlebars.registerHelper('pluck', function (collection, path) {
7 return _.pluck(collection, path);
8 });
9}
10
11module.exports = helper;