type(script) and null safe navigation in json objects
Returns the value or undefined if any value on the path to it is undefined
>>examples/getter.tsThe optional chaining also takes into account union types.
>>examples/unions.tsReturns a new object with the target set to value if the path to value exists
>>examples/set.tsMaps the value at end of the path
>>examples/map.tsReturns a new object with the target mapped using a promise returning map function
>>examples/pmap.ts