MCPcopy Index your code
hub / github.com/simstudioai/sim / encodeMeetingUuid

Function encodeMeetingUuid

apps/sim/connectors/zoom/zoom.ts:80–86  ·  view source on GitHub ↗

* URL-encodes a Zoom meeting UUID. Double-encodes when the UUID starts with '/' * or contains '//', per Zoom's API requirements.

(uuid: string)

Source from the content-addressed store, hash-verified

78 * or contains '//', per Zoom's API requirements.
79 */
80function encodeMeetingUuid(uuid: string): string {
81 const encoded = encodeURIComponent(uuid)
82 if (uuid.startsWith('/') || uuid.includes('//')) {
83 return encodeURIComponent(encoded)
84 }
85 return encoded
86}
87
88function formatDate(date: Date): string {
89 const y = date.getFullYear()

Callers 1

zoom.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected