(name: string, prefix: string = APP_PREFIX)
| 9 | * @param prefix The prefix of class name you want to append |
| 10 | */ |
| 11 | export function prefixClaName(name: string, prefix: string = APP_PREFIX) { |
| 12 | return name ? `${prefix}-${name}` : ''; |
| 13 | } |
| 14 | |
| 15 | export function classNames(...args) { |
| 16 | if (isEmpty(args)) return; |
no outgoing calls
no test coverage detected