forked from TheAlgorithms/JavaScript
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckFlatCase.js
More file actions
Latest commit
22 lines (18 loc) · 895 Bytes
/
Copy pathCheckFlatCase.js
File metadata and controls
22 lines (18 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// checkFlatCase method checks if the given string is in flatcase or not. Flatcase is a convention
// where all letters are in lowercase, and there are no spaces between words.
// thisvariable is an example of flatcase. In camelCase it would be thisVariable, snake_case this_variable and so on.
// Problem Source & Explanation: https://en.wikipedia.org/wiki/Naming_convention_(programming)
/**
* checkFlatCase method returns true if the string in flatcase, else return the false.
* @param {string} varname the name of the variable to check.
* @returns {boolean} return true if the string is in flatcase, else return false.
*/
constcheckFlatCase=(varname)=>{
// firstly, check that input is a string or not.
if(typeofvarname!=='string'){
thrownewTypeError('Argument is not a string.')
}
constpat=/^[a-z]*$/
returnpat.test(varname)
}
export{checkFlatCase}