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

eredita

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eredita - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

6

index.js

@@ -115,3 +115,3 @@ 'use strict';

var v = this.dot(path);
return typeof v === 'undefined' ? this.parent ? this.parent.get(path) : undefined : v;
return typeof v === 'undefined' ? this.parent ? this.parent.getPath(path) : undefined : v;
}

@@ -150,4 +150,4 @@ }, {

var p = this.parent;
var _parent = p ? p.merge(path) : null;
var _self = this.get(path);
var _parent = p ? p.mergePath(path) : null;
var _self = this.getPath(path);
if (!_parent) {

@@ -154,0 +154,0 @@ return deepExtend({}, _self);

{
"name": "eredita",
"version": "1.0.0",
"version": "1.0.1",
"description": "Javascript Data Inheritance",

@@ -16,3 +16,3 @@ "main": "index.js",

"json",
"temaplate",
"template",
"deep",

@@ -19,0 +19,0 @@ "extend"

@@ -96,3 +96,3 @@ 'use strict';

var v = this.dot(path);
return typeof v === 'undefined' ? (this.parent ? this.parent.get(path): undefined) : v;
return typeof v === 'undefined' ? (this.parent ? this.parent.getPath(path): undefined) : v;
}

@@ -123,4 +123,4 @@ getTypedPath(path, _type, _default) {

var p = this.parent;
var _parent = p ? p.merge(path) : null;
var _self = this.get(path);
var _parent = p ? p.mergePath(path) : null;
var _self = this.getPath(path);
if (!_parent) {

@@ -127,0 +127,0 @@ return deepExtend({}, _self);

Sorry, the diff of this file is not supported yet

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