@corefunc/corefunc
    Preparing search index...

    Function checkIsObjectLike

    • Parameters

      • value: any

        The value to check

      Returns boolean

      Returns true if value is object-like, else false

      checkIsObjectLike

      Checks if value is object-like. A value is object-like if it's not null and has a typeof result of "object".

      checkIsObjectLike({}); ➜ true
      
      checkIsObjectLike([1, 2, 3]); ➜ true
      
      checkIsObjectLike(() => {}); ➜ false
      
      checkIsObjectLike(null); ➜ false
      

      0.0.1