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

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