New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@ezzylabs/object-path

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ezzylabs/object-path - npm Package Compare versions

Package was removed
Sorry, it seems this package was removed from the registry
Comparing version
0.1.0
to
0.1.1
+6
-11
package.json
{
"name": "@ezzylabs/object-path",
"version": "0.1.0",
"version": "0.1.1",
"description": "Access nested object properties using paths",

@@ -16,3 +16,3 @@ "keywords": [

],
"author": "Ezzy Labs <foss@ezzylabs.com>",
"author": "Ezzy Labs <team@ezzylabs.com>",
"license": "MIT",

@@ -35,3 +35,3 @@ "main": "lib/object-path.js",

"type": "git",
"url": "git+https://github.com/ezzylabs/object-utils.git"
"url": "git+https://github.com/ezzylabs/utilities.git"
},

@@ -43,5 +43,5 @@ "scripts": {

"bugs": {
"url": "https://github.com/ezzylabs/object-utils/issues"
"url": "https://github.com/ezzylabs/utilities/issues"
},
"homepage": "https://github.com/ezzylabs/object-utils#readme",
"homepage": "https://github.com/ezzylabs/utilities#readme",
"devDependencies": {

@@ -51,8 +51,3 @@ "ava": "^4.3.0",

},
"ava": {
"files": [
"./lib/**/*.test.js"
]
},
"gitHead": "765801e658e3d91aedc2251e6a31495f49055327"
"gitHead": "594562fed504e8d48f33ea134f2c1e2dfc94b139"
}

@@ -32,3 +32,3 @@ # `@ezzylabs/object-path`

`has(obj, path)`
### `has(obj, path)`

@@ -57,3 +57,3 @@ Checks if the property at the given `path` is defined in the `obj`.

`get(obj, path, fallback)`
### `get(obj, path, fallback)`

@@ -81,3 +81,3 @@ Gets a property of the `obj` at the given `path`, or returns the `fallback` value if the property is not defined.

`set(obj, path, value)`
### `set(obj, path, value)`

@@ -104,3 +104,3 @@ Sets a property at the given path.

`join(...segments)`
### `join(...segments)`

@@ -125,3 +125,3 @@ Joins multiple path segments into a single path.

`split(path)`
### `split(path)`

@@ -141,2 +141,2 @@ Splits the given path into individual segments.

objectPath.split(null) // throws TypeError; null cannot be split
```
```