chore: update index

This commit is contained in:
antfu 2023-01-31 00:04:09 +00:00
parent 07c1631934
commit ebe4e0a81d

View File

@ -4,7 +4,7 @@ type cases = [
Expect<Equal<EndsWith<'abc', 'bc'>, true>>,
Expect<Equal<EndsWith<'abc', 'abc'>, true>>,
Expect<Equal<EndsWith<'abc', 'd'>, false>>,
Expect<Equal<EndsWith<"abc", "ac">, false>>,
Expect<Equal<EndsWith<"abc", "">, true>>,
Expect<Equal<EndsWith<"abc", " ">, false>>
Expect<Equal<EndsWith<'abc', 'ac'>, false>>,
Expect<Equal<EndsWith<'abc', ''>, true>>,
Expect<Equal<EndsWith<'abc', ' '>, false>>,
]