ends-with.d.ts 140 B

123
  1. declare function endsWith(arr: string, e: string): boolean;
  2. declare function endsWith<T>(arr: T[], e: T): boolean;
  3. export default endsWith;