Get the value at path within input.
path
input
get({ a: { b: 1 } }, 'a.b'); // 1 Copy
get({ a: { b: 1 } }, 'a.b'); // 1
Get the value at
pathwithininput.Example