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

@flourish/interpreter

Package Overview
Dependencies
Maintainers
18
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@flourish/interpreter - npm Package Compare versions

Comparing version 6.0.0 to 6.0.1

2

interpreter.js

@@ -952,3 +952,3 @@ (function (global, factory) {

createDatetimeInterpretation("%d %B %y"), // 27 April 72
createDatetimeInterpretation("%d-%B-%Y", function(str) { // 27-Apr-1972
createDatetimeInterpretation("%d-%b-%Y", function(str) { // 27-Apr-1972
var arr = str.split("-").map(parseFloat);

@@ -955,0 +955,0 @@ return (arr[0] > 0 && arr[0] <= 31) && (arr[2] >= 1000);

{
"name": "@flourish/interpreter",
"version": "6.0.0",
"version": "6.0.1",
"description": "Does a best guess at the type of data supplied",

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

@@ -0,1 +1,4 @@

# 6.0.1
* Remove duplicate test for %d-%B-%Y
# 6.0.0

@@ -2,0 +5,0 @@ * Add human-readable example to each type

@@ -82,3 +82,3 @@ import { timeFormat, timeParse } from "d3-time-format";

createDatetimeInterpretation("%d %B %y"), // 27 April 72
createDatetimeInterpretation("%d-%B-%Y", function(str) { // 27-Apr-1972
createDatetimeInterpretation("%d-%b-%Y", function(str) { // 27-Apr-1972
var arr = str.split("-").map(parseFloat);

@@ -85,0 +85,0 @@ return (arr[0] > 0 && arr[0] <= 31) && (arr[2] >= 1000);

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