Artem S. Povalyukhin

Results 16 issues of Artem S. Povalyukhin

the [spec](https://tc39.es/ecma262/#sec-reflect-object)

patch
feature
ES6

something like ```node --max-old-space-size=```

feature
CLI

like [eval()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval#Last_expression_is_evaluated) does. ```js root@node:~# node --use-strict > if (true) false; false > if (false) true; undefined > do true; while (false); true > for (var i = 0; i...

enhancement
CLI

```js >> 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`

bug
test262

```js > 0xABCD ** 0xABCD Infinity > String(0xABCDn ** 0xABCDn).length 204216 ``` [readme](https://github.com/tc39/proposal-bigint/blob/master/README.md) [spec](https://tc39.github.io/proposal-bigint/) [reference implementation](https://github.com/GoogleChromeLabs/jsbi)

feature
ES6

Hi! :) It would be nice to have a `node:dnsPromises`'like [API](https://nodejs.org/api/dns.html#dnsresolve-dnsresolve-and-dnsreverse) build on top of niginx `resolver`s.

feature