njs icon indicating copy to clipboard operation
njs copied to clipboard

fix own property lookup for primitive values

Open drsm opened this issue 6 years ago • 0 comments

>> Object.getOwnPropertyDescriptor(1, 'toFixed')
{
 value: [Function: native],
 writable: true,
 enumerable: false,
 configurable: true
}
>> 1..hasOwnProperty('toFixed')
true

test262: built-ins/Symbol/prototype/description/is-not-own-property.js

drsm avatar Nov 18 '19 19:11 drsm