UNPKG

@k8ts/metadata

Version:

K8ts tools for working with k8ts metadata.

7 lines (5 loc) 184 B
import type { Map } from "immutable" import type { ValueKey } from "./repr" export function toObjectForm(map: Map<ValueKey, string>) { return map.mapKeys(x => x.str).toObject() }