JSPM

is-circular

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 147257
  • Score
    100M100P100Q164620F
  • License MIT

checks an object (function or array) for circular references

Package Exports

  • is-circular

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-circular) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

is-circular Build Status js-standard-style

Split an array into multiple arrays using filters

determines if an object (or array) is circular

Installation

npm install is-circular

Usage

var isCircular = require('is-circular')

var circularObj = {
  foo: 1,
  bar: 2
}
circularObj.qux = circularObj

isCircular(circularObj) // true

var obj = {
  foo: 1,
  bar: 2,
  qux: 3
}

isCircular(obj) // false

License

MIT