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

@internetarchive/bookreader

Package Overview
Dependencies
Maintainers
11
Versions
311
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@internetarchive/bookreader - npm Package Compare versions

Comparing version 4.23.3 to 4.23.4

2

package.json
{
"name": "@internetarchive/bookreader",
"version": "4.23.3",
"version": "4.23.4",
"description": "The Internet Archive BookReader.",

@@ -5,0 +5,0 @@ "repository": {

@@ -76,3 +76,3 @@ /* global BookReader, soundManager */

if (/[?&]_autoReadAloud=show/.test(location.toString())) {
this.ttsStart();
this.ttsStart(false); // false flag is to initiate read aloud controls
}

@@ -183,3 +183,3 @@ }

//______________________________________________________________________________
BookReader.prototype.ttsStart = function () {
BookReader.prototype.ttsStart = function (startTTSEngine = true) {
if (this.constModeThumb == this.mode)

@@ -191,3 +191,4 @@ this.switchMode(this.constMode1up);

this.ttsSendAnalyticsEvent('Start');
this.ttsEngine.start(this.currentIndex(), this.getNumLeafs());
if (startTTSEngine)
this.ttsEngine.start(this.currentIndex(), this.getNumLeafs());
};

@@ -194,0 +195,0 @@

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