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

accessibility-checker

Package Overview
Dependencies
Maintainers
3
Versions
102
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

accessibility-checker - npm Package Compare versions

Comparing version 3.1.6 to 3.1.7

1

index.d.ts

@@ -270,3 +270,2 @@ /******************************************************************************

HAAC_Input_Placeholder: string;
HAAC_Aria_Native_Host_Sematics: string;
RPT_Form_ChangeEmpty: string;

@@ -273,0 +272,0 @@ IBMA_Color_Contrast_WCAG2AA: string;

@@ -370,3 +370,2 @@ "use strict";

"HAAC_Input_Placeholder": "1145",
"HAAC_Aria_Native_Host_Sematics": "1146",
"RPT_Form_ChangeEmpty": "1147",

@@ -373,0 +372,0 @@ "IBMA_Color_Contrast_WCAG2AA": "1148",

2

lib/ACEngineManager.d.ts

@@ -6,3 +6,3 @@ export declare class ACEngineManager {

static isPuppeteer(content: any): any;
static isPlaywright(content: any): any;
static isPlaywright(content: any): boolean;
static isSelenium(content: any): boolean;

@@ -9,0 +9,0 @@ /**

@@ -177,3 +177,4 @@ "use strict";

if (content && content.constructor) {
return content.constructor.toString().includes("Puppeteer");
return !!content.constructor.toString().match(/Function: Page/)
|| content.constructor.toString().includes("Puppeteer");
}

@@ -184,3 +185,3 @@ return false;

if (content && content.constructor) {
return content.constructor.toString().includes("Page");
return !!content.constructor.toString().match(/class Page /);
}

@@ -187,0 +188,0 @@ return false;

{
"name": "accessibility-checker",
"version": "3.1.6",
"version": "3.1.7",
"description": "An automated testing tools for accessibility testing using Puppeteer, Selenium, or Zombie",

@@ -21,3 +21,3 @@ "main": "index.js",

"dependencies": {
"chromedriver": "^89.0.0",
"chromedriver": "*",
"deep-diff": "^0.3.4",

@@ -24,0 +24,0 @@ "js-yaml": "^3.13.1",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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