mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
/**
|
|
* Convert environment variable to Boolean
|
|
*/
|
|
export function toBoolean(value: any): boolean {
|
|
return value === 'true' || value === true || value === '1' || value === 1;
|
|
}
|