UNPKG

@thi.ng/api

Version:

Common, generic types, interfaces & mixins

7 lines (6 loc) 150 B
const isDeref = (x) => x != null && typeof x["deref"] === "function"; const deref = (x) => isDeref(x) ? x.deref() : x; export { deref, isDeref };