UNPKG
netsuite-api-client
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Netsuite client for REST interface
github.com/julbrs/netsuite-api-client
julbrs/netsuite-api-client
netsuite-api-client
/
dist
/
utils.js
8 lines
(7 loc)
•
197 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
function
removeTrailingSlash
(
str
) {
return
str.
replace
(
/\/$/
,
''
); }
function
removeLeadingSlash
(
str
) {
return
str.
replace
(
/^\//
,
''
); }
export
{ removeLeadingSlash, removeTrailingSlash };