njs icon indicating copy to clipboard operation
njs copied to clipboard

Object.values() is not resolving getters

Open 277hz opened this issue 4 years ago • 0 comments

>> Object.values({get a() {return 1;}})
[
 <empty>
]

> Object.values({get a() {return 1;}})
[ 1 ]

https://github.com/nginx/njs/blob/master/src/njs_object.c#L962 https://github.com/nginx/njs/blob/master/src/njs_object.c#L991 https://github.com/nginx/njs/blob/master/src/njs_value.c#L1065-L1071

277hz avatar Jun 26 '21 11:06 277hz