UNPKG

@snipsonian/core

Version:

Core/base reusable javascript code snippets

6 lines (5 loc) 157 B
import isUndefined from './isUndefined'; import isNull from './isNull'; export default function isSet(val) { return !isUndefined(val) && !isNull(val); }