blob: 720e37e4a492f3642c6a598c2f424c07f261028b [file] [log] [blame] [edit]
import { type } from '../type.js'
export function isObject(input){
return type(input) === 'Object'
}