UNPKG

streakingman-cli

Version:

封装了一些常用操作的命令行工具

8 lines (7 loc) 339 B
export const jekyllMdName: (title: string) => string = (title) => { const now = new Date(); const year = now.getFullYear().toString(); const month = (now.getMonth() + 1).toString().padStart(2, '0'); const date = now.getDate().toString().padStart(2, '0'); return `${year}-${month}-${date}-${title.toLowerCase()}.md`; };