MCPcopy Index your code
hub / github.com/cifertech/DisplayKit / formatAssetMeta

Function formatAssetMeta

app.js:4700–4706  ·  view source on GitHub ↗
(a)

Source from the content-addressed store, hash-verified

4698}
4699
4700function formatAssetMeta(a) {
4701 const bits = [];
4702 if (a && a.kind) bits.push(a.kind);
4703 if (a && a.width && a.height) bits.push(`${a.width}×${a.height}`);
4704 if (a && a.dataUrl) bits.push("embedded");
4705 return bits.join(" · ");
4706}
4707
4708function renderAssets() {
4709 if (!assetsList) return;

Callers 1

renderAssetsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected