UNPKG

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