UNPKG
typedoc-neo-theme
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Improved theme for Typedoc
github.com/google/typedoc-neo-theme
google/typedoc-neo-theme
typedoc-neo-theme
/
third_party
/
src
/
default
/
helpers
/
remove-quotes.ts
10 lines
(9 loc)
•
265 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
/** * Removes any double-quotes from the input string * *
@param
str The string that should be updated. *
@return
The original string, omitting double quotes (`"`). */
export
function
removeQuotes
(
str
:
string
):
string
{
return
str.
replace
(
/"/g
,
''
) }