UNPKG

280 BJavaScriptView Raw
1'use strict';
2
3var helpers = require('./helpers');
4
5/**
6 * Register async template helpers at the given filepath.
7 *
8 * ```sh
9 * $ --asyncHelpers="./foo.js"
10 * ```
11 * @name asyncHelpers
12 * @api public
13 * @cli public
14 */
15
16module.exports = function(app) {
17 return helpers(app);
18};