allocatr/public/assets/libs/art-template/src/helper.js
2025-02-26 16:44:49 +08:00

16 lines
255 B
JavaScript
Executable File

/**
* 添加模板辅助方法
* @name template.helper
* @param {String} 名称
* @param {Function} 方法
*/
template.helper = function (name, helper) {
helpers[name] = helper;
};
var helpers = template.helpers = utils.$helpers;