UNPKG
ends-with-string
Version:
latest (2.0.0)
2.0.0
1.0.1
1.0.0
Check if a string or buffer ends with a given string
bconnorwhite/ends-with-string
ends-with-string
/
.auto
/
build
/
index.d.ts
3 lines
(2 loc)
•
114 B
TypeScript
View Raw
1
2
3
///
<reference types="node" />
export
default
function
endsWith
(
input:
string
| Buffer,
string
:
string
): boolean
;