@wesjet/function.js
Version:
wesjet javascript library
11 lines (10 loc) • 320 B
TypeScript
/**
* Copyright (c) Wesbitty, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*
*/
export declare const isNotUndefined: <T>(_: T | undefined) => _ is T;
export declare const isUndefined: <T>(_: T | undefined) => _ is undefined;