RSS Git Download  Clone
Raw Blame History 374B 15 lines
const camelCase = require('lodash/camelCase')
const startCase = require('lodash/startCase')

p3xr.ng.component('p3xrMainStatistics', {
    template: require('./p3xr-main-statistics.html'),
    controller: function(p3xrCommon, p3xrRedisParser, p3xrSocket, $rootScope) {

        this.generateKey = (key) => {

            return startCase(camelCase(key))
        }
    }
})