MCPcopy Index your code
hub / github.com/plotly/dash / longString

Function longString

dash/dash-renderer/src/persistence.js:203–209  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

201// without getting anywhere near typical browser limits
202const pow = 16;
203function longString() {
204 let s = 'Spam';
205 for (let i = 2; i < pow; i++) {
206 s += s;
207 }
208 return s;
209}
210
211export const stores = {
212 memory: new MemStore()

Callers 1

tryGetWebStoreFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…