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

Function itemsEqual

http/unstable_structured_fields_test.ts:859–862  ·  view source on GitHub ↗
(a: Item, b: Item)

Source from the content-addressed store, hash-verified

857
858// Compare items for equality
859function itemsEqual(a: Item, b: Item): boolean {
860 return bareItemsEqual(a.value, b.value) &&
861 paramsEqual(a.parameters, b.parameters);
862}
863
864// Compare inner lists for equality
865function innerListsEqual(a: InnerList, b: InnerList): boolean {

Callers 3

innerListsEqualFunction · 0.85
listMembersEqualFunction · 0.85
runConformanceTestsFunction · 0.85

Calls 2

bareItemsEqualFunction · 0.85
paramsEqualFunction · 0.85

Tested by

no test coverage detected