UNPKG

@tyntec/node-red-contrib-tyntec

Version:

[![](https://raw.githubusercontent.com/tyntec/node-red-contrib-tyntec/main/docs/logo.png)](https://tyntec.com)

9 lines (7 loc) 201 B
const deepValue = function (obj, path) { for (let i = 0, newpath = path.split('.'), len = newpath.length; i < len; i++) { obj = obj[newpath[i]]; } return obj; }; module.exports = deepValue;