blog/themes/fluid/scripts/helpers/injects.js
2024-11-16 11:34:10 +08:00

8 lines
189 B
JavaScript

/* global hexo */
'use strict';
hexo.extend.helper.register('point_injected', function(type) {
return hexo.theme.config.injects[type] && hexo.theme.config.injects[type].length > 0;
});