UNPKG
@kitmi/utils
Version:
latest (1.3.1)
1.3.1
1.3.0
1.2.3
1.2.2
1.2.1
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
A JavaScript utility library for both server and browser
github.com/kitmi/jacaranda
kitmi/jacaranda
@kitmi/utils
/
src
/
isQuoted.js
10 lines
(8 loc)
•
251 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Check a string if it is quoted with " or ' *
@function
string.isQuoted *
@param
{
String
}
s
*
@returns
{
boolean
} */
const
isQuoted
= (
s
) => s && (s.
startsWith
(
"'"
) || s.
startsWith
(
'"'
)) && s[
0
] === s[s.
length
-
1
];
export
default
isQuoted;