deep-props.get
Advanced tools
Comparing version 0.1.5 to 0.1.6
Changelog | ||
========= | ||
<a name="0.1.6"></a> | ||
## [0.1.6](https://github.com/jpcx/deep-props.get/tree/0.1.6) (2018-05-26) | ||
__Since: [deep-props 0.3.1](https://github.com/jpcx/deep-props/blob/master/CHANGELOG.md#0.3.1)__ | ||
| __[Changes since 0.1.5](https://github.com/jpcx/deep-props.get/compare/0.1.5...0.1.6)__ | [Release Notes](https://github.com/jpcx/deep-props.get/releases/tag/0.1.6) | [README](https://github.com/jpcx/deep-props.get/tree/0.1.6/README.md) | | ||
| --- | --- | --- | | ||
| [Source Code (zip)](https://github.com/jpcx/deep-props.get/archive/0.1.6.zip) | [Source Code (tar.gz)](https://github.com/jpcx/deep-props.get/archive/0.1.6.tar.gz) | | ||
| --- | --- | | ||
#### Bugfixes | ||
+ __docs:__ Fixed linking to updated deep-props tag. | ||
<a name="0.1.5"></a> | ||
@@ -5,0 +19,0 @@ ## [0.1.5](https://github.com/jpcx/deep-props.get/tree/0.1.5) (2018-05-26) |
{ | ||
"name": "deep-props.get", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "Retrieves a nested property from a data source. Supports Objects, Arrays, Maps, Sets, WeakMaps, WeakSets, and JSON. Supports the use of a custom extraction function to handle unsupported datasets.", | ||
@@ -5,0 +5,0 @@ "engines": { |
@@ -11,3 +11,3 @@ # [deep-props](https://github.com/jpcx/deep-props/blob/master/README.md).get | ||
The following installation, testing, and deployment instructions assume that deep-props.get will be installed as a standalone module. For instructions on how to install and test all deep-props modules, please [refer to the main README](https://github.com/jpcx/deep-props/blob/0.3.0/README.md). Functionality of the module remains the same in both cases. | ||
The following installation, testing, and deployment instructions assume that deep-props.get will be installed as a standalone module. For instructions on how to install and test all deep-props modules, please [refer to the main README](https://github.com/jpcx/deep-props/blob/master/README.md). Functionality of the module remains the same in both cases. | ||
@@ -42,3 +42,3 @@ ### Prerequisites | ||
***Note:*** For string paths using standard settings, '.' is considered the same as '[' and ']'. See [<code>Options</code>](https://github.com/jpcx/deep-props.get/blob/0.1.5/docs/global.md#~Options) for instructions for customizing this behavior. | ||
***Note:*** For string paths using standard settings, '.' is considered the same as '[' and ']'. See [<code>Options</code>](https://github.com/jpcx/deep-props.get/blob/0.1.6/docs/global.md#~Options) for instructions for customizing this behavior. | ||
@@ -204,3 +204,3 @@ **Nested Object Extraction** | ||
**Usage of a custom extraction function (see [<code>Options</code>](https://github.com/jpcx/deep-props.get/blob/0.1.5/docs/global.md#~Options) and [<code>GetCustomizer</code>](https://github.com/jpcx/deep-props.get/blob/0.1.5/docs/global.md#~GetCustomizer))** | ||
**Usage of a custom extraction function (see [<code>Options</code>](https://github.com/jpcx/deep-props.get/blob/0.1.6/docs/global.md#~Options) and [<code>GetCustomizer</code>](https://github.com/jpcx/deep-props.get/blob/0.1.6/docs/global.md#~GetCustomizer))** | ||
```js | ||
@@ -240,4 +240,4 @@ // Creation of a sample custom data structure which uses a 'retrieve' method for data access. | ||
### See: | ||
+ [API Docs](https://github.com/jpcx/deep-props.get/blob/0.1.5/docs/API.md) | ||
+ [Global Docs](https://github.com/jpcx/deep-props.get/blob/0.1.5/docs/global.md) | ||
+ [API Docs](https://github.com/jpcx/deep-props.get/blob/0.1.6/docs/API.md) | ||
+ [Global Docs](https://github.com/jpcx/deep-props.get/blob/0.1.6/docs/global.md) | ||
@@ -252,9 +252,9 @@ ### Module: get | ||
| --- | --- | --- | --- | --- | | ||
| `host` | [deep-props.get~Host](https://github.com/jpcx/deep-props.get/blob/0.1.5/docs/global.md#~Host) | | | Container to search within. | | ||
| `path` | [deep-props.get~Path](https://github.com/jpcx/deep-props.get/blob/0.1.5/docs/global.md#~Path) | | | Path to desired property. | | ||
| `opt` | [deep-props.get~Options](https://github.com/jpcx/deep-props.get/blob/0.1.5/docs/global.md#~Options) | \<optional> | {} | Execution settings. | | ||
| `host` | [deep-props.get~Host](https://github.com/jpcx/deep-props.get/blob/0.1.6/docs/global.md#~Host) | | | Container to search within. | | ||
| `path` | [deep-props.get~Path](https://github.com/jpcx/deep-props.get/blob/0.1.6/docs/global.md#~Path) | | | Path to desired property. | | ||
| `opt` | [deep-props.get~Options](https://github.com/jpcx/deep-props.get/blob/0.1.6/docs/global.md#~Options) | \<optional> | {} | Execution settings. | | ||
Source: | ||
* [deep-props.get/index.js](https://github.com/jpcx/deep-props.get/blob/0.1.5/index.js), [line 282](https://github.com/jpcx/deep-props.get/blob/0.1.5/index.js#L282) | ||
* [deep-props.get/index.js](https://github.com/jpcx/deep-props.get/blob/0.1.6/index.js), [line 282](https://github.com/jpcx/deep-props.get/blob/0.1.6/index.js#L282) | ||
@@ -267,3 +267,3 @@ ##### Returns: | ||
[deep-props.get~Target](https://github.com/jpcx/deep-props.get/blob/0.1.5/docs/global.md#~Target) | [deep-props.get~ResultGenerator](https://github.com/jpcx/deep-props.get/blob/0.1.5/docs/global.md#~ResultGenerator) | ||
[deep-props.get~Target](https://github.com/jpcx/deep-props.get/blob/0.1.6/docs/global.md#~Target) | [deep-props.get~ResultGenerator](https://github.com/jpcx/deep-props.get/blob/0.1.6/docs/global.md#~ResultGenerator) | ||
@@ -274,3 +274,3 @@ # | ||
Versioned using [SemVer](http://semver.org/). For available versions, see the [Changelog](https://github.com/jpcx/deep-props.get/blob/0.1.5/CHANGELOG.md). | ||
Versioned using [SemVer](http://semver.org/). For available versions, see the [Changelog](https://github.com/jpcx/deep-props.get/blob/0.1.6/CHANGELOG.md). | ||
@@ -287,2 +287,2 @@ ## Contribution | ||
This project is licensed under the MIT License - see the [LICENSE](https://github.com/jpcx/deep-props.get/blob/0.1.5/LICENSE) file for details | ||
This project is licensed under the MIT License - see the [LICENSE](https://github.com/jpcx/deep-props.get/blob/0.1.6/LICENSE) file for details |
59296