diff --git a/browser.js b/browser.js index 57be0ce..186fb32 100644 --- a/browser.js +++ b/browser.js @@ -2,6 +2,12 @@ * Browser eccrypto implementation. */ +// NOTE(Kagami): We don't use promise shim in Browser implementation +// because it's supported natively in new browsers (see +// ) and we can use only new browsers +// because of the WebCryptoAPI (see +// ). + "use strict"; var EC = require("elliptic").ec;