FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
JavaScript/String/CheckFlatCase.js at master · MMABSOUT/JavaScript · GitHub
MMABSOUT
/
JavaScript
Public
forked from
TheAlgorithms/JavaScript
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
JavaScript
/
String
/
CheckFlatCase.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
22 lines (18 loc) · 895 Bytes
Breadcrumbs
JavaScript
/
String
/
CheckFlatCase.js
Copy path
File metadata and controls
22 lines (18 loc) · 895 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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.
*/
const
checkFlatCase
=
(
varname
)
=>
{
// firstly, check that input is a string or not.
if
(
typeof
varname
!==
'string'
)
{
throw
new
TypeError
(
'Argument is not a string.'
)
}
const
pat
=
/
^
[
a
-
z
]
*
$
/
return
pat
.
test
(
varname
)
}
export
{
checkFlatCase
}
Back
|
FazBrowse Home
|
New Git URL