(feature: string)
| 361 | }; |
| 362 | |
| 363 | export const getDisabledFeature = (feature: string): boolean => { |
| 364 | return (process.env.NEXT_PUBLIC_DISABLE_FEATURES || '') |
| 365 | .toLowerCase() |
| 366 | .split(',') |
| 367 | .includes(feature); |
| 368 | }; |
| 369 | |
| 370 | export type CourseContentType = 'folder' | 'video' | 'notion'; |
| 371 |
no outgoing calls
no test coverage detected