8 lines
98 B
JavaScript
8 lines
98 B
JavaScript
class Ref {
|
|
constructor(ref = Ref) {
|
|
this.ref = ref
|
|
}
|
|
}
|
|
|
|
assert.equal(Ref, new Ref().ref)
|