UNPKG

parse-openapi

Version:

OpenAPI v3 parser

12 lines (11 loc) 291 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isDefined = void 0; /** * Check if a value is defined * @param value */ const isDefined = (value) => { return value !== undefined && value !== null && value !== ''; }; exports.isDefined = isDefined;