UNPKG

@kitten-science/kitten-analysts

Version:
23 lines 758 B
import { ucfirst } from "@kitten-science/kitten-scientists/tools/Format.js"; import { gaugeFactory } from "./factory.js"; export const kg_years_total = (cache, remote) => gaugeFactory({ cache, remote, help: "How many years you've played.", name: "kg_years_total", labelNames: ["client_type", "guid", "label", "location", "type"], require: "getStatistics", extract(client_type, guid, location, element, subject) { if (element.name !== "totalYears") { return; } subject.set({ client_type, guid, label: ucfirst(element.label), location, type: element.type, }, element.value); }, }); //# sourceMappingURL=kg_years_total.js.map