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

fiftyone.pipeline.engines

Package Overview
Dependencies
Maintainers
1
Versions
124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fiftyone.pipeline.engines - npm Package Compare versions

Comparing version 4.4.3 to 4.4.4

tests/cache.test.js

13

lru.js

@@ -41,5 +41,14 @@ /* *********************************************************************

__convertKey (key) {
if (((!!key) && (key.constructor === Array)) ||
((!!key) && (key.constructor === Object))) {
return JSON.stringify(key);
} else {
return key;
}
}
write (key, value) {
this.ensureLimit();
key = this.__convertKey(key);
if (!this.head) {

@@ -58,2 +67,3 @@ this.head = this.tail = new Node(key, value);

read (key) {
key = this.__convertKey(key);
if (this.cache[key]) {

@@ -78,2 +88,3 @@ const value = this.cache[key].value;

remove (key) {
key = this.__convertKey(key);
const node = this.cache[key];

@@ -80,0 +91,0 @@

4

package.json
{
"name": "fiftyone.pipeline.engines",
"version": "4.4.3",
"version": "4.4.4",
"description": "Shared base functionality for implementing engines for the 51Degrees Pipeline API",

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

"dependencies": {
"fiftyone.pipeline.core": "^4.4.3"
"fiftyone.pipeline.core": "^4.4.4"
},

@@ -17,0 +17,0 @@ "devDependencies": {

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