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

dot-object

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dot-object - npm Package Compare versions

Comparing version 1.5.2 to 1.5.3

test/str.js

2

bower.json

@@ -28,3 +28,3 @@ {

},
"version": "1.5.2",
"version": "1.5.3",
"homepage": "https://github.com/rhalff/dot-object",

@@ -31,0 +31,0 @@ "moduleType": [

# ChangeLog
## 2016-09-29, Version 1.5.3
* Fix override bug in str()
## 2016-08-04, Version 1.5.0

@@ -4,0 +7,0 @@ * [[`a7e948f2fa`](https://github.com/rhalff/dot-object/commit/a7e948f2fa)] - Ensure we only process true Arrays and Objects. (Fixed by MechJosh0 #15)

@@ -144,3 +144,3 @@ 'use strict'

this._fill(path.split(this.seperator), obj, v, mod)
} else if (this.override) {
} else if (!obj.hasOwnProperty(path) || this.override) {
obj[path] = _process(v, mod)

@@ -147,0 +147,0 @@ }

{
"name": "dot-object",
"description": "dot-object makes it possible to transform and read (JSON) objects using dot notation.",
"version": "1.5.2",
"version": "1.5.3",
"author": {

@@ -6,0 +6,0 @@ "name": "Rob Halff",

@@ -144,3 +144,3 @@ 'use strict'

this._fill(path.split(this.seperator), obj, v, mod)
} else if (this.override) {
} else if (!obj.hasOwnProperty(path) || this.override) {
obj[path] = _process(v, mod)

@@ -147,0 +147,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