UNPKG

js-model-mapper

Version:
7 lines (6 loc) 199 B
module.exports = function initObject(path = '', initialValue) { return !path || !path.split ? {} : path .split('.') .reverse() .reduce((acc, key) => ({ [key]: acc }), initialValue); };