dyna-stringify
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

About

Stringify object with circular references.

Usage

// Minimal usage
dynaStringify(value);
dynaStringify(value, {spaces: 2});
dynaStringify(value, {spaces: 2, circularText: '!REF'});

// Extensive with callback for the reference text
dynaStringify(
  value, 
  {
    spaces: 2, 
    circularText: value => { 
      if (value.customerId) return `!RefCustId:${value.customerId}`; 
      return '!Ref',
    }
   }
);

Syntax

In Typescript

 dynaStringify = (
  value: any,
  options?: {
    spaces?: number;
    circularText?: string | ((value: any) => string);
  },
): string;

Example

const value = {
      name: 'John',
      age: 32,
      cars: ['VW', 'Plymouth'],
    };
value.cars.push(value);

The dynaStringify(value, {spaces: 2})

returns

{
  "name": "John",
  "age": 32,
  "cars": [
    "VW",
    "Plymouth",
    "[CircularRef]"
  ]
}

Readme

Keywords

none

Package Sidebar

Install

npm i dyna-stringify

Weekly Downloads

10

Version

1.0.3

License

MIT

Unpacked Size

38.2 kB

Total Files

62

Last publish

Collaborators

  • dennisat