MCPcopy Create free account
hub / github.com/Effect-TS/effect / makeTable

Function makeTable

packages/effect/src/unstable/encoding/Toml.ts:37–37  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

35
36const hasOwn = Object.prototype.hasOwnProperty
37const makeTable = (): Table => Object.create(null)
38const isTable = (value: unknown): value is Table =>
39 typeof value === "object" && value !== null && !Array.isArray(value) && !(value instanceof Date)
40

Callers 4

TomlParserClass · 0.85
resolveTableMethod · 0.85
assignMethod · 0.85
parseInlineTableMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected