Merge pull request #1721 from RickCole21/master

remove console.log
This commit is contained in:
RickCole 2021-03-30 14:20:11 +08:00 committed by GitHub
commit 0626cb4bf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1411,7 +1411,6 @@ function isCyclic(obj: any): boolean {
seenObjects.push(obj);
for (var key in obj) {
if (obj.hasOwnProperty(key) && detect(obj[key])) {
console.log(obj, 'cycle at ' + key);
return true;
}
}