kv-cv/node_modules/motion-utils/dist/es/is-object.mjs
2026-04-19 11:08:18 +07:00

6 lines
146 B
JavaScript

function isObject(value) {
return typeof value === "object" && value !== null;
}
export { isObject };
//# sourceMappingURL=is-object.mjs.map