UNPKG

@yangin/code-style

Version:

A library for code style, includes Prettier、ESLint、StyleLint、CommitLint

7 lines (5 loc) 196 B
export const getCurrentDate = () => { const date = new Date() return `${date.getFullYear()}-${date.getMonth() + 1}-${date.getDate()}` } export const getNewStr = (str: string) => `${str}_new`