UNPKG
@samlevy/string-helpers
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.1
1.0.0
Basic string helper functions
github.com/samlev/string-helpers
samlev/string-helpers
@samlevy/string-helpers
/
dist
/
regex
/
index.d.ts
9 lines
(8 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
path
from
"./path"
;
import
sanitize
from
"./sanitize"
;
export
{ sanitize, path };
declare
const
_default
: {
sanitize
:
(
str
:
string
) =>
string
;
path
:
(
str
:
string
,
start
?:
string
,
end
?:
string
) =>
RegExp
; };
export
default
_default;