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

fib-app

Package Overview
Dependencies
Maintainers
1
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fib-app - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

t.js

14

lib/db.js

@@ -5,2 +5,3 @@ const Pool = require('fib-pool');

const graphql = require('./classes/graphql');
const coroutine = require('coroutine');

@@ -12,2 +13,4 @@ var slice = Array.prototype.slice;

opts = opts || {};
var sync_lock = new coroutine.Lock();
var syned = false;

@@ -106,3 +109,12 @@ var db = Pool({

db.syncSync();
sync_lock.acquire();
try {
if (!syned) {
db.syncSync();
syned = true;
}
} finally {
sync_lock.release();
}
return graphql(db);

@@ -109,0 +121,0 @@ },

2

package.json
{
"name": "fib-app",
"version": "1.1.1",
"version": "1.1.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "lib/app",

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