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

vim-format

Package Overview
Dependencies
Maintainers
5
Versions
341
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vim-format - npm Package Compare versions

Comparing version 1.0.6-dev.241 to 1.0.6-dev.242

2

dist/bfast.js

@@ -184,3 +184,3 @@ "use strict";

this.offset = offset;
this.name = name;
this.name = name ?? "root";
this._header = new remoteValue_1.RemoteValue(() => this.requestHeader(), name + '.header');

@@ -187,0 +187,0 @@ this._children = new Map();

@@ -60,13 +60,14 @@ "use strict";

}
enqueue(xhr) {
this._queue.push(xhr);
enqueue(request) {
this._queue.push(request);
this.next();
}
retry(xhr) {
this._active.delete(xhr);
retry(request) {
this._active.delete(request);
this.maxConcurency = Math.max(1, this.maxConcurency - 1);
setTimeout(() => this.enqueue(xhr), 2000);
setTimeout(() => this.enqueue(request), 2000);
}
end(xhr) {
this._active.delete(xhr);
end(request) {
this.logs.log('Finished ' + request.msg);
this._active.delete(request);
this.next();

@@ -85,5 +86,5 @@ }

next.send();
this.logs.log('Starting ' + next.msg);
this.logs.log('Started ' + next.msg);
}
}
exports.RemoteBuffer = RemoteBuffer;
{
"name": "vim-format",
"version": "1.0.6-dev.241",
"version": "1.0.6-dev.242",
"description": "The VIM format is a modern and efficient open 3D data interchange format designed for BIM and manufacturing data optimized for efficient loading and rendering on low-power devices.",

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

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