@sectester/scan
Version:
The package defines a simple public API to manage scans and their expectations.
10 lines • 356 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isPrimitive = void 0;
const isPrimitive = (value) => typeof value === 'string' ||
typeof value === 'number' ||
typeof value === 'boolean' ||
value === null ||
value === undefined;
exports.isPrimitive = isPrimitive;
//# sourceMappingURL=is-primitive.js.map