Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ledgerhq/hw-transport-u2f

Package Overview
Dependencies
Maintainers
5
Versions
184
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ledgerhq/hw-transport-u2f - npm Package Compare versions

Comparing version 1.1.0-beta.e6f42082 to 1.1.0

4

lib/TransportU2F.js

@@ -150,6 +150,6 @@ "use strict";

TransportU2F.discover = function (cb) {
TransportU2F.discover = function (observer) {
var unsubscribed = false;
(0, _u2fApi.isSupported)().then(function (supported) {
if (!unsubscribed && supported) cb(null);
if (!unsubscribed && supported) observer.next(null);
});

@@ -156,0 +156,0 @@ return {

{
"name": "@ledgerhq/hw-transport-u2f",
"version": "1.1.0-beta.e6f42082",
"version": "1.1.0",
"description": "Ledger Hardware Wallet Web implementation of the communication layer, using U2F api",

@@ -29,3 +29,3 @@ "keywords": [

"dependencies": {
"@ledgerhq/hw-transport": "^1.1.0-beta.e6f42082",
"@ledgerhq/hw-transport": "^1.1.0",
"u2f-api": "^0.2.7"

@@ -32,0 +32,0 @@ },

@@ -74,6 +74,6 @@ /********************************************************************************

static discover = cb => {
static discover = (observer: *) => {
let unsubscribed = false;
isSupported().then(supported => {
if (!unsubscribed && supported) cb(null);
if (!unsubscribed && supported) observer.next(null);
});

@@ -80,0 +80,0 @@ return {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc