Packages

Compare if two types have the same constructor in Gleam

Current section

Files

Jump to
comparator src comparator_ffi.mjs
Raw

src/comparator_ffi.mjs

export function is_same_kind(a, b) {
return a.constructor === b.constructor;
}