UNPKG

@roots/bud

Version:

Configurable, extensible build tools for modern single and multi-page web applications

7 lines (6 loc) 251 B
import isNull from '@roots/bud-support/isNull'; import isUndefined from '@roots/bud-support/isUndefined'; /** * Returns true if the given value is neither null nor undefined. */ export const isset = (value) => !isNull(value) && !isUndefined(value);