MCPcopy Index your code
hub / github.com/remix-run/react-router / isValidJsonObject

Function isValidJsonObject

packages/create-react-router/utils.ts:192–194  ·  view source on GitHub ↗
(obj: any)

Source from the content-addressed store, hash-verified

190}
191
192export function isValidJsonObject(obj: any): obj is Record<string, unknown> {
193 return !!(obj && typeof obj === "object" && !Array.isArray(obj));
194}
195
196export async function directoryExists(p: string) {
197 try {

Callers 1

updatePackageJSONFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…