UNPKG

@snipsonian/core

Version:

Core/base reusable javascript code snippets

7 lines (5 loc) 176 B
import isUndefined from './isUndefined'; import isNull from './isNull'; export default function isSet(val: unknown): boolean { return !isUndefined(val) && !isNull(val); }