New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@paybyrd/threedsecure-service

Package Overview
Dependencies
Maintainers
4
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@paybyrd/threedsecure-service - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

README.md

2

package.json
{
"name": "@paybyrd/threedsecure-service",
"version": "1.0.0",
"version": "1.0.1",
"description": "JS service implementation to control the 3DS flow over Paybyrd API",

@@ -5,0 +5,0 @@ "main": "dist/threedsecure-service.min.js",

class ThreeDSecureService {
constructor({ threeDSecureUrl, container, maxAttempts, attemptDelay, culture, onProgressFn }) {
this._onProgressFn = onProgressFn;
this._maxAttempts = maxAttempts;
this._attemptDelay = attemptDelay;
this._threeDSecureUrl = threeDSecureUrl;
this._culture = culture;
this._maxAttempts = maxAttempts || 50;
this._attemptDelay = attemptDelay || 2000;
this._threeDSecureUrl = threeDSecureUrl || 'https://threedsecure.paybyrd.com';
this._culture = culture || 'en-US';
this._container = container || document.body;

@@ -9,0 +9,0 @@

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