5 lines
108 B
JavaScript
5 lines
108 B
JavaScript
![]() |
import getTypeOf from "../getTypeOf";
|
||
|
export function isObject(v) {
|
||
|
return getTypeOf(v) === "object";
|
||
|
}
|