import * as check from "../../../sync/check/null-or-undefined"; export function isNullOrUndefined (mixed : any) : mixed is null|undefined { return check.checkNullOrUndefined(mixed) === undefined; }