Check the file name of the file system is case-sensitive or not.
npm install fs-file-name-sensitive




Check file-system(fs) file name is case-sensitive or not.
``js
isFileNameSensitive = require('fs-file-name-sensitive')
console.log(isFileNameSensitive('/path/to/check/'))
`
function isFileNameSensitive(aPath[, aOptions])
* arguments
aPath (String)*: the path to check.
aOptions (Object)*:
cache (Boolean)*: whether cache the result of the aPath. defaults to true.aPath`.
return (Boolean)*: whether the file name is sensitive or not in
MIT