Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/aspen-cloud/triplit
/ getInstallId
Function
getInstallId
packages/cli/src/config.ts:22–29 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
20
};
21
22
export
const
getInstallId = () => {
23
let
installId = config.get(
'installId'
, null);
24
if
(!installId) {
25
installId = randomUUID();
26
config.set(
'installId'
, installId);
27
}
28
return
installId;
29
};
Callers
1
index.ts
File · 0.85
Calls
2
get
Method · 0.65
set
Method · 0.65
Tested by
no test coverage detected