See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| // ------------------------------------------------- | |
| // Types | |
| // ------------------------------------------------- | |
| type Pagination<Data = any> = { | |
| data: Data; | |
| perPage: number; | |
| totalNumber: number; | |
| currentPage: number; | |
| lastPage: number; |
| export const getRawWord = (type) => | |
| ({ | |
| undefined: "`${[![]][!![] + ![]]}`", | |
| true: "([] + !![])", | |
| false: "([] + ![])", | |
| object: "`${{}}`", | |
| }[type]); | |
| export const getCharacter = (char) => | |
| ({ |