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

@naturalcycles/db-lib

Package Overview
Dependencies
Maintainers
0
Versions
303
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@naturalcycles/db-lib - npm Package Compare versions

Comparing version 9.24.0 to 9.24.1

8

dist/testing/daoTest.js

@@ -61,2 +61,10 @@ "use strict";

});
// TimeMachine
if (support.timeMachine) {
test('getByIds(...) 10 minutes ago should return []', async () => {
expect(await dao.getByIds([item1.id, 'abc'], {
readAt: js_lib_1.localTime.now().minus(10, 'minute').unix,
})).toEqual([]);
});
}
// SAVE

@@ -63,0 +71,0 @@ if (support.nullValues) {

2

package.json

@@ -48,3 +48,3 @@ {

},
"version": "9.24.0",
"version": "9.24.1",
"description": "Lowest Common Denominator API to supported Databases",

@@ -51,0 +51,0 @@ "keywords": [

@@ -83,2 +83,13 @@ import { Readable } from 'node:stream'

// TimeMachine
if (support.timeMachine) {
test('getByIds(...) 10 minutes ago should return []', async () => {
expect(
await dao.getByIds([item1.id, 'abc'], {
readAt: localTime.now().minus(10, 'minute').unix,
}),
).toEqual([])
})
}
// SAVE

@@ -85,0 +96,0 @@ if (support.nullValues) {

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