# runtime checks

Source: docs/source/exhibits/foundations/json/runtime-checks.ts

```ts
import { isJson } from "atom.io/foundations/json"

isJson({ ok: true }) // true
isJson(new Set()) // false
```
