refactor: 改用 TypeScript。close #1.

This commit is contained in:
2022-10-07 13:55:39 +08:00
parent 11b9017a07
commit 1dfd5e5271
84 changed files with 3459 additions and 3836 deletions

5
lib/utils/kebabCase.ts Normal file
View File

@@ -0,0 +1,5 @@
import { slug } from 'github-slugger'
const kebabCase = (str: string) => slug(str)
export default kebabCase