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

@evidence-dev/component-utilities

Package Overview
Dependencies
Maintainers
5
Versions
387
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@evidence-dev/component-utilities - npm Package Compare versions

Comparing version 2.0.0-usql.5 to 2.0.0-usql.6

7

CHANGELOG.md
# @evidence-dev/component-utilities
## 2.0.0-usql.6
### Patch Changes
- 7c4249c0: fix falsy dates in `convertColumnToDate`
- 20127231: Bump all versions so version pinning works
## 2.0.0-usql.5

@@ -4,0 +11,0 @@

2

package.json
{
"name": "@evidence-dev/component-utilities",
"version": "2.0.0-usql.5",
"version": "2.0.0-usql.6",
"description": "",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -42,3 +42,3 @@ import { tidy, mutate } from '@tidyjs/tidy';

data,
mutate({ [column]: (d) => new Date(standardizeDateString(d[column])) ?? null })
mutate({ [column]: (d) => (d[column] ? new Date(standardizeDateString(d[column])) : null) })
);

@@ -45,0 +45,0 @@

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