관리-도구
편집 파일: isObject.js
'use strict'; /** @type {import('./isObject')} */ module.exports = function isObject(x) { return !!x && (typeof x === 'function' || typeof x === 'object'); };