blob: bbe284e3f77cfd7a231c93a1f538e9afcad62497 [file] [log] [blame] [edit]
export function createPath(path, delimiter = '.'){
return typeof path === 'string' ? path.split(delimiter) : path
}