MCPcopy Index your code
hub / github.com/Flagsmith/flagsmith / set

Function set

frontend/common/utils/format.ts:21–24  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

19 return Format.camelCase(value.replace(/_/g, ' '))
20 },
21 set(value: string): string {
22 // My Constant > MY_CONSTANT
23 return value.replace(/ /g, '_').toUpperCase()
24 },
25 },
26
27 fullName(person: Person | null | undefined): string {

Calls

no outgoing calls