# object-shape **Repository Path**: mirrors_developit/object-shape ## Basic Information - **Project Name**: object-shape - **Description**: Get a description of a JS object's shape. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-08-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # `object-shape` [![NPM](https://img.shields.io/npm/v/object-shape.svg)](https://www.npmjs.com/package/object-shape) Returns a String description of a given object's shape. ```js import shape from 'object-shape'; shape('hello') // string shape(2) // number shape(undefined) // undefined shape(null) // [Null] shape({ a:1, b:2 }) // [Object a,b] shape(/reg/i) // [RegExp] shape(new Foo()) // [Foo a,b,c] ```