UNPKG

jsonld-signatures-merkleproof2019

Version:

A jsonld signature implementation to support MerkleProof2019 verification in Verifiable Credential context

10 lines (7 loc) 216 B
import cloneDeep from 'lodash.clonedeep'; export function deepCopy<T = any> (obj: T): T { return cloneDeep(obj); } export function isObject (candidate: any): boolean { return candidate === Object(candidate); }