Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

verjson

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

verjson - npm Package Compare versions

Comparing version
0.0.2
to
0.0.3
+2
-2
build/index.js

@@ -55,4 +55,4 @@ 'use strict';

value: function versionCompare(a, b) {
if (!a) return -1;
if (!b) return 1;
if (!a || !a.version) return -1;
if (!b || !b.version) return 1;

@@ -59,0 +59,0 @@ var _a = a.version.split('.');

{ "name": "verjson"
, "description": "Applies format changes to keep old jsons compatible."
, "version": "0.0.2"
, "version": "0.0.3"
, "license": "MIT"

@@ -5,0 +5,0 @@ , "author": "Florian Wendelborn"

@@ -30,4 +30,4 @@ import {EventEmitter} from 'events';

versionCompare (a, b) {
if (!a) return -1;
if (!b) return 1;
if (!a || !a.version) return -1;
if (!b || !b.version) return 1;

@@ -34,0 +34,0 @@ let _a = a.version.split('.');