mirror of
https://github.com/directus/directus.git
synced 2026-01-13 23:57:57 -05: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;
|
|
}
|