source:
node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.mjs
| Last change on this file was a762898, checked in by , 6 months ago | |
|---|---|
|
|
| File size: 224 bytes | |
| Rev | Line | |
|---|---|---|
| [a762898] | 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.
