starts-with.d.ts 146 B

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