(str: any)
| 33 | } |
| 34 | |
| 35 | function isString(str: any): str is string { |
| 36 | return {}.toString.call(str) === '[object String]'; |
| 37 | } |
| 38 | |
| 39 | function hyphenate(str: string): string { |
| 40 | return str.replace(RE_CAMEL, w => `-${w}`).toLowerCase(); |
no outgoing calls
no test coverage detected
searching dependent graphs…