1 | // Copyright (c) .NET Foundation. All rights reserved.
|
2 | // Licensed under the MIT License.
|
3 |
|
4 | export function isEnvironmentVariableSet(val: string | boolean | number | undefined | null): boolean {
|
5 | return !/^(false|0)?$/i.test(val === undefined || val === null ? '' : String(val));
|
6 | }
|