source:
node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.mjs@
ba17441
| Last change on this file since ba17441 was a762898, checked in by , 5 months ago | |
|---|---|
|
|
| File size: 224 bytes | |
| Line | |
|---|---|
| 1 | import { isArrayLike } from './isArrayLike.mjs'; |
| 2 | import { isObjectLike } from './isObjectLike.mjs'; |
| 3 | |
| 4 | function isArrayLikeObject(value) { |
| 5 | return isObjectLike(value) && isArrayLike(value); |
| 6 | } |
| 7 | |
| 8 | export { isArrayLikeObject }; |
Note:
See TracBrowser
for help on using the repository browser.
