elearning/Frontend-Learner/node_modules/on-change/source/is-object.js
2026-01-13 10:48:02 +07:00

3 lines
113 B
JavaScript

export default function isObject(value) {
return Object.prototype.toString.call(value) === '[object Object]';
}