Updated jsdoc for get function
This commit is contained in:
parent
b0e843fd3e
commit
080f2f8bb6
@ -1,8 +1,11 @@
|
|||||||
/**
|
/**
|
||||||
|
* Get the value of an item inside an object
|
||||||
|
* @param obj The source object
|
||||||
|
* @param path The path to the object
|
||||||
|
* @param defaultValue A default value to be returned
|
||||||
*
|
*
|
||||||
* @param obj
|
* @example
|
||||||
* @param path
|
* U.get({ a: 1, b: 2 }, 'b') // => 2
|
||||||
* @param defaultValue
|
|
||||||
*/
|
*/
|
||||||
export function get(obj: Object, path: string, defaultValue: any = undefined): any {
|
export function get(obj: Object, path: string, defaultValue: any = undefined): any {
|
||||||
const travel = (regexp: any) => {
|
const travel = (regexp: any) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user