This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* Hexo 扩展:辅助函数(Helper)
* 补充复杂的业务逻辑
* https://hexo.io/zh-cn/api/helper.html
* 用法:<%= helper_test('xxx') %>
*/
hexo.extend.helper.register('helper_test', function (character) {
return character + '😁';
});