• File: isArrayLike.ts
  • Full Path: /home/awtadalkhimacom/public_html/services/node_modules/rxjs/src/internal/util/isArrayLike.ts
  • Date Modified: 10/30/2025 4:29 AM
  • File size: 124 bytes
  • MIME-type: text/plain
  • Charset: utf-8
export const isArrayLike = (<T>(x: any): x is ArrayLike<T> => x && typeof x.length === 'number' && typeof x !== 'function');