Current section

Files

Jump to
gossamer src utils object.ffi.mjs
Raw

src/utils/object.ffi.mjs

// src/utils/object.ffi.ts
function isIndexable(value) {
return typeof value === "object" && value !== null;
}
export {
isIndexable
};