assert.deepEqual(Object.getOwnPropertySymbols(x), [Symbol(size)]);
I was expecting:
assert.deepEqual(Object.getOwnPropertySymbols(x), [size]);
Is it required to call Symbol(size)
to have proper comparison even though size
is already an instace of Symbol?
return [find];
I was expecting:
return [this.value];
Thanks again!