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

dexie-relay

Package Overview
Dependencies
Maintainers
0
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dexie-relay - npm Package Compare versions

Comparing version 5.0.3 to 5.0.4

11

index.js

@@ -185,6 +185,7 @@ import {Client} from 'relay-to-relay'

const stamps = await dataTab.where('stamp').notEqual(0).toArray()
const count = datas.count || 25
while(stamps.length){
datas.session = 'response'
datas.edits = null
datas.stamps = stamps.splice(stamps.length - 25, 25)
datas.stamps = stamps.splice(stamps.length - count, count)
this.client.onSend(JSON.stringify(datas), nick)

@@ -196,3 +197,3 @@ }

datas.stamps = null
datas.edits = edits.splice(edits.length - 25, 25)
datas.edits = edits.splice(edits.length - count, count)
this.client.onSend(JSON.stringify(datas), nick)

@@ -267,5 +268,6 @@ }

}
const count = datas.count || 25
while(stamps.length){
datas.session = 'stamps'
datas.stamps = stamps.splice(stamps.length - 25, 25)
datas.stamps = stamps.splice(stamps.length - count, count)
datas.edits = null

@@ -310,6 +312,7 @@ this.client.onSend(JSON.stringify(datas), nick)

}
const count = datas.count || 25
while(edits.length){
datas.session = 'edits'
datas.stamps = null
datas.edits = edits.splice(edits.length - 25, 25)
datas.edits = edits.splice(edits.length - count, count)
this.client.onSend(JSON.stringify(datas), nick)

@@ -316,0 +319,0 @@ }

{
"name": "dexie-relay",
"version": "5.0.3",
"version": "5.0.4",
"main": "index.js",

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

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