iscamelcase
v0.8.7
Published
A small package that compares strings with there camelCased counterparts
Downloads
8
Maintainers
Readme
isCamelCase
This small package can check if a given string or a file is in camelCase style.
install
Yarn
yarn add iscamelcaseNPM
npm install iscamelcaseexample
At first we have to require the package:
const isCamelCase = require("iscamelcase");There are two options to compare a given string. Both return a boolean.
string is a normal value
In this case we can use the checkString function:
console.log(isCamelCase.checkString("foo"));string is a file
In this case we should use the checkFile function:
console.log(isCamelCase.checkFile("foo.bar"));This function will also return false if the string is missing a file extension.
