# object-path-get
**Repository Path**: mirrors_skratchdot/object-path-get
## Basic Information
- **Project Name**: object-path-get
- **Description**: get values from javascript objects by specifying a path
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-09-25
- **Last Updated**: 2026-05-24
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# object-path-get
[](http://badge.fury.io/js/object-path-get)
[](https://travis-ci.org/skratchdot/object-path-get)
[](https://codeclimate.com/github/skratchdot/object-path-get)
[](https://coveralls.io/github/skratchdot/object-path-get?branch=master)
[](https://david-dm.org/skratchdot/object-path-get)
[](https://david-dm.org/skratchdot/object-path-get#info=devDependencies)
[](https://npmjs.org/package/object-path-get)
## Description
get values from javascript objects by specifying a path.
by using this library, you can help prevent the following error from occurring:
```
Cannot read property 'foo' of undefined
```
NOTE: I've re-written / used this function so many different times, I decided to publish it
as a module.
## Getting Started
Install the module with: `npm install --save object-path-get`
```javascript
var getPath = require('object-path-get');
var obj = { foo: { bar: 'baz' } };
getPath(obj, 'foo.bar'); // result: "baz"
getPath(obj, 'foo.invalidKey', 'cool'); // result: "cool"
getPath(obj, 'foo|bar', null, '|'); // result: "baz" (with different delimiter)
getPath(obj, ['foo', 'bar']); // result "baz" (with array path)
```
## Links
- [Source Code](https://github.com/skratchdot/object-path-get)
- [Changelog](https://github.com/skratchdot/object-path-get/blob/master/CHANGELOG.md)
- [Live example on Runkit](https://npm.runkit.com/object-path-get)
## Contributors
Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
| [
◬](https://www.skratchdot.com/)
[💻](https://github.com/skratchdot/object-path-get/commits?author=skratchdot "Code") [📖](https://github.com/skratchdot/object-path-get/commits?author=skratchdot "Documentation") [💡](#example-skratchdot "Examples") | [
danigb](https://github.com/danigb)
[💻](https://github.com/skratchdot/object-path-get/commits?author=danigb "Code") |
| :---: | :---: |
This project follows the [all-contributors](https://github.com/kentcdodds/all-contributors) specification. Contributions of any kind welcome!
## License
Copyright (c) 2014 skratchdot
Licensed under the MIT license.