π
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I am the Miaou user with id 103 and name "Oliboy50" on http://dystroy.org/miaou |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const _ = require('lodash'); | |
function multiGet(object, path, defaultValue) { | |
return path | |
.split('[]') | |
.reduce((resolvedPaths, pathShard, pathShardIndex, pathShards) => { | |
const isFirstPathShard = pathShardIndex === 0; | |
const isLastPathShard = pathShardIndex === pathShards.length -1; | |
return resolvedPaths | |
.map(resolvedPath => { |