Gerald Yeo

Results 13 comments of Gerald Yeo

Acknowledged. Are you able to tell if any script fail to load?

@gargbhupinder by default, each OTP is only valid for 1 minute. Did you set the step option to allow for 5 minute intervals?

@xenoterracide yes. it's using core-async instead of core Noted on the docs.

Hi @pickfire That is expected as you're using the browser version. v12 has marked buffer as an external module. So you'll need to import buffer separately. You can refer to:...

you probably can import buffer within your code: i.e. ```js import buffer from 'buffer'; window.Buffer = buffer ``` or use the node version ```js import { authenticator } from 'otplib';...

No I meant when changing to v12, consider using the main entry and relay on your own bundler to package the module. The difference between v11 and v12 is that...

The initial thought was that the package will probably be used in a bundler. Packaging buffer would mean the end-users might bundle buffer twice, increasing the final output size. After...

@imetallica, @shauntrennery I looked at the expo modules as part of the library refactor. There are 2 issues at the moment: 1. While `random` is fine, the `crypto` module doesn't...

Looks like dependency on external libraries like `crypto-js` will still have to proceed until native support comes. We will just have to keep an eye on it then.