MCPcopy Index your code
hub / github.com/tensorflow/playground / getHideProps

Function getHideProps

src/state.ts:64–72  ·  view source on GitHub ↗
(obj: any)

Source from the content-addressed store, hash-verified

62}
63
64function getHideProps(obj: any): string[] {
65 let result: string[] = [];
66 for (let prop in obj) {
67 if (endsWith(prop, HIDE_STATE_SUFFIX)) {
68 result.push(prop);
69 }
70 }
71 return result;
72}
73
74/**
75 * The data type of a state variable. Used for determining the

Callers 2

deserializeStateMethod · 0.85
serializeMethod · 0.85

Calls 1

endsWithFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…