Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sindresorhus/dot-prop
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.1.1
Choose a base ref
...
head repository: sindresorhus/dot-prop
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.2.0
Choose a head ref
  • 3 commits
  • 5 files changed
  • 2 contributors

Commits on Nov 1, 2019

  1. Copy the full SHA
    a6be343 View commit details
  2. Meta tweaks

    sindresorhus committed Nov 1, 2019
    Copy the full SHA
    4801a63 View commit details
  3. 5.2.0

    sindresorhus committed Nov 1, 2019
    Copy the full SHA
    282e984 View commit details
Showing with 9 additions and 5 deletions.
  1. +3 −3 index.d.ts
  2. +1 −0 index.js
  3. +2 −2 package.json
  4. +2 −0 readme.md
  5. +1 −0 test.js
6 changes: 3 additions & 3 deletions index.d.ts
Original file line number Diff line number Diff line change
@@ -22,11 +22,11 @@ declare const dotProp: {
```
*/
get<T>(
object: {[key: string]: any},
object: {[key: string]: any} | undefined,
path: string
): T | undefined;
get<T>(
object: {[key: string]: any},
object: {[key: string]: any} | undefined,
path: string,
defaultValue: T
): T;
@@ -72,7 +72,7 @@ declare const dotProp: {
//=> true
```
*/
has(object: {[key: string]: any}, path: string): boolean;
has(object: {[key: string]: any} | undefined, path: string): boolean;

/**
@param object - Object to delete the `path` value.
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -124,6 +124,7 @@ module.exports = {
return false;
}

// eslint-disable-next-line unicorn/no-for-loop
for (let i = 0; i < pathArray.length; i++) {
if (isObj(object)) {
if (!(pathArray[i] in object)) {
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dot-prop",
"version": "5.1.1",
"version": "5.2.0",
"description": "Get, set, or delete a property from a nested object using a dot path",
"license": "MIT",
"repository": "sindresorhus/dot-prop",
@@ -40,6 +40,6 @@
"ava": "^2.1.0",
"benchmark": "^2.1.4",
"tsd": "^0.7.2",
"xo": "^0.24.0"
"xo": "^0.25.3"
}
}
2 changes: 2 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
@@ -77,6 +77,8 @@ Type: `object`

Object to get, set, or delete the `path` value.

You are allowed to pass in `undefined` as the object to the `get` and `has` functions.

#### path

Type: `string`
1 change: 1 addition & 0 deletions test.js
Original file line number Diff line number Diff line change
@@ -198,6 +198,7 @@ test('has', t => {

t.is(dotProp.has({'foo.baz': {bar: true}}, 'foo\\.baz.bar'), true);
t.is(dotProp.has({'fo.ob.az': {bar: true}}, 'fo\\.ob\\.az.bar'), true);
t.is(dotProp.has(undefined, 'fo\\.ob\\.az.bar'), false);
});

test('prevent setting/getting `__proto__`', t => {