MCPcopy Create free account
hub / github.com/denoland/std / fn

Function fn

json/parse_stream_test.ts:11–17  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9Deno.test({
10 name: "JsonParseStream",
11 async fn() {
12 await assertValidParse(
13 JsonParseStream,
14 ['{"foo": "bar"}', '["foo"]', '"foo"', "0", "null", "true", "false"],
15 [{ foo: "bar" }, ["foo"], "foo", 0, null, true, false],
16 );
17 },
18});
19
20Deno.test({

Callers

nothing calls this directly

Calls 4

assertValidParseFunction · 0.90
assertInvalidParseFunction · 0.90
assertEqualsFunction · 0.90
toStringMethod · 0.45

Tested by

no test coverage detected