elearning/Frontend-Learner/node_modules/on-change/source/is-object.js

4 lines
113 B
JavaScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
export default function isObject(value) {
return Object.prototype.toString.call(value) === '[object Object]';
}