mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
486 B
18 lines
486 B
[ |
|
{ |
|
"description": "parent and child must be declared and", |
|
"code": "equal(typeof parent, 'object')\nequal(typeof child, 'object')" |
|
}, |
|
{ |
|
"description": "parent.child must be equal to child", |
|
"code": "equal(parent.child, child)" |
|
}, |
|
{ |
|
"description": "child.parent must be equal to parent", |
|
"code": "equal(child.parent, parent)" |
|
}, |
|
{ |
|
"description": "child.parent.child must be equal to itself", |
|
"code": "equal(child.parent.child, child)" |
|
} |
|
] |