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

confidence

Package Overview
Dependencies
Maintainers
2
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

confidence - npm Package Compare versions

Comparing version 5.0.0 to 5.0.1

5

lib/store.js

@@ -6,2 +6,3 @@ 'use strict';

const Hoek = require('@hapi/hoek');
const Bourne = require('@hapi/bourne');
const Schema = require('./schema');

@@ -235,3 +236,3 @@

if (typeof value === 'string') {
result = value.split(options.splitToken);
result = value ? value.split(options.splitToken) : [];
}

@@ -263,3 +264,3 @@ else {

try {
result = JSON.parse(value);
result = Bourne.parse(value);
}

@@ -266,0 +267,0 @@ catch (e) {

3

package.json
{
"name": "confidence",
"description": "Configuration API",
"version": "5.0.0",
"version": "5.0.1",
"repository": "git://github.com/hapipal/confidence",

@@ -14,2 +14,3 @@ "main": "lib/index.js",

"dependencies": {
"@hapi/bourne": "2.x.x",
"@hapi/hoek": "9.x.x",

@@ -16,0 +17,0 @@ "alce": "1.x.x",

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