Lets say I have a object
obj1 : {
  "a" : 22
  "b" : 33
  "c" : 67
}
and obj2 as
obj2 : {
  x:"obj1.a" (string - path)
  y: "obj1.b" (string- path)
}
but when i do obj2.x I get obj1.a which is correct but I want 22, How do I do this? Or is there any npm package which takes care of this?
 
     
    