Detect whether the file-system has case-sensitive file paths.
File systems can have case-sensitive or case-insensitive file paths:
This distinction is important for tools that navigate the file-system (e.g. whether to apply a glob case-sensitively).
npm install is-fs-case-sensitive
import { isFsCaseSensitive } from 'is-fs-case-sensitive'
console.log(isFsCaseSensitive())
// => false
Returns: boolean
Type: typeof fs
Default: import('fs')
The file-system to use to check for case-sensitivity.