1
0
Fork 0

update theme

This commit is contained in:
thisLight 2020-12-27 21:17:29 +08:00
parent 57ed60df81
commit 4bcac944b3
27 changed files with 23899 additions and 1 deletions
themes/cmd/scripts

View file

@ -0,0 +1,4 @@
hexo.extend.helper.register("range", function(start, stop, step){
return Array.from({ length: (stop - start) / step + 1}, (_, i) => start + (i * step));
});