UNPKG

chart-data-grouper

Version:

A utility to group, sum, average and transform data into Chart.js format with nested and date support.

8 lines (7 loc) 228 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = getValueByPath; // Utility function function getValueByPath(obj, path) { return path.split('.').reduce((o, p) => o?.[p], obj); }