Evgeny

Results 130 issues of Evgeny

### Clear and concise description of the problem It would be nice to have `formatRange()` supported by the library. ### Suggested solution Support: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/formatRange ### Alternative _No response_ ### Additional...

Status: Proposal

### Clear and concise description of the problem `Intl.NumberFormat` supports `Number`, `BigInt`, and `String` as a number parameter. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/format > A Number, BigInt, or string, to format. Strings are parsed...

Status: PR Welcome
Status: Proposal
🍰 p2-nice-to-have

Hello, I've created issue in `node-addon-api` https://github.com/nodejs/node-addon-api/issues/1453 but it may be related more to scope of this repository. > I couldn't find in the documentation and examples how to properly...

What about deep linking on Linux?

I've faced with unnecessary parameters passed to handler together with deep link: ``` '--allow-file-access-from-files', '--original-process-start-time=13234384064407895', ``` I think we should use only last element from the array: https://github.com/oikonomopo/electron-deep-linking-mac-win/blob/master/main.js#L63

The method `requestSingleInstanceLock` is always returns `false` for Mac App Store builds (signed build). So application closes immediately after start. More details: https://github.com/electron/electron/issues/15958

According to the documentation `HARDENED_OFFSET` should be a static property of `HDKey` class: https://github.com/paulmillr/scure-bip32/blob/2274f2f42c5382dd08aab747ba7c8686322e706d/README.md?plain=1#L56 But `HARDENED_OFFSET` is exported as named export https://github.com/paulmillr/scure-bip32/blob/2274f2f42c5382dd08aab747ba7c8686322e706d/index.ts#L26

This PR includes `decodePoint` method according to the specification: https://tools.ietf.org/html/rfc8032#section-5.1.3 > If the resulting value is >= p, decoding fails. There are some tests, if needed more tests can be...

Working with `ed25519` curve I've faced with strange behaviour: `decodePoint` doesn't fails on points out of field. ```js import elliptic from 'elliptic'; const ec = new elliptic.eddsa('ed25519'); const point =...

Current implementation allows to decode any number even more `n` or even more than 32 bit number. https://github.com/indutny/elliptic/blob/43ac7f230069bd1575e1e4a58394a512303ba803/lib/elliptic/utils.js#L115-L117 Maybe method should fails or number be reduce by `n` by default?