UNPKG

@gleif-it/did-webs-ts

Version:
8 lines (7 loc) 265 B
import { createKey } from './Key.js'; import { createThreshold } from './Threshold.js'; export const createKeyState = (kt, k) => { const threshold = createThreshold(kt); const keys = k.map((key) => createKey(key)); return { kt: threshold, k: keys }; };