decircular

Remove circular references from objects

MIT 3 个版本
安装
npm install decircular
yarn add decircular
pnpm add decircular
bun add decircular
README

decircular

Remove circular references from objects

Circular references occur in JavaScript when an object references itself or creates a loop of references involving other objects. This can lead to issues like infinite loops and errors during serialization (e.g., with JSON.stringify). This package replaces circular references in objects or arrays with clear path notations (e.g., [Circular *a.1.b]). Ideal for data serialization, debugging, and logging.

Install

npm install decircular

Usage

import decircular from 'decircular';

const object = {
	a: 1,
	b: {
		c: 2
	}
};

object.b.d = object.b; // Creates a circular reference

console.log(decircular(object));
/*
{
	a: 1,
	b: {
		c: 2,
		d: '[Circular *b]'
	}
}
*/

API

decircular(object)

Returns a deep copy of the given object or array with circular references removed.

  • safe-stringify - Serialize objects to JSON with handling for circular references
版本列表
1.0.0 2024-03-10
0.1.1 2023-11-17
0.1.0 2023-11-14