()
| 17 | |
| 18 | const isMacOs = () => process.platform === 'darwin'; |
| 19 | const isWindows = () => process.platform === 'win32'; |
| 20 | |
| 21 | export const isNameTooLong = (str: string): boolean => |
| 22 | // Not entirely correct: we can't assume FS from OS. But good enough? |
no outgoing calls
no test coverage detected
searching dependent graphs…