util.getByPath(object, path, delim)
Return a value at the path in a nested object. delim is the delimiter used in the path Example:
path
object
delim
joint.util.getByPath({ a: { aa: { aaa: 3 } } }, 'a/aa/aaa', '/'); // 3