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

chart2music

Package Overview
Dependencies
Maintainers
1
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chart2music - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

19

dist/index.js

@@ -554,2 +554,3 @@ var c2mChart = (function (exports) {

};
this._pauseFlag = false;
this._providedAudioEngine = input.audioEngine;

@@ -936,5 +937,7 @@ this._title = input.title ?? "";

else if (this._groupIndex === maxGroups) {
this._groupIndex++;
}
else if (this._groupIndex > maxGroups) {
if (!this._pauseFlag) {
this._pauseFlag = true;
return;
}
this._pauseFlag = false;
this._groupIndex = 0;

@@ -959,6 +962,8 @@ this._pointIndex++;

}
else if (this._groupIndex === 0) {
this._groupIndex--;
}
else if (this._groupIndex < min) {
else if (this._groupIndex === min) {
if (!this._pauseFlag) {
this._pauseFlag = true;
return;
}
this._pauseFlag = false;
this._groupIndex = maxGroups;

@@ -965,0 +970,0 @@ this._pointIndex--;

@@ -26,2 +26,3 @@ import type { SonifyTypes, c2mOptions, c2mGolangReturn } from "./types";

private _providedAudioEngine?;
private _pauseFlag;
constructor(input: SonifyTypes);

@@ -28,0 +29,0 @@ setOptions(option: c2mOptions): void;

{
"name": "chart2music",
"version": "0.4.0",
"version": "0.4.1",
"main": "dist/index.js",

@@ -5,0 +5,0 @@ "module": "dist/index.mjs",

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