UNPKG

hexo-theme-maxmilu

Version:

A fork hexo theme base hexo-theme-nexmoe.

18 lines (14 loc) 598 B
'use strict'; function jsAutoVersionHelper(...args) { return args.reduce((result, path, i) => { if (i) result += '\n'; if (Array.isArray(path)) { return result + Reflect.apply(jsAutoVersionHelper, this, path); } if (!path.includes('?') && !path.endsWith('.js')) path += '.js'; let url_suffix = "?v=" + new Date().getTime(); let url = this.url_for(path) + url_suffix; return `${result}<script async src="${url}"></script>`; }, ''); } hexo.extend.helper.register('js_auto_version', jsAutoVersionHelper);