UNPKG

jest-allure2-reporter

Version:
8 lines (5 loc) 204 B
import type { Parameter } from 'jest-allure2-reporter'; import { isObject } from '../../../utils'; export function isParameter(value: unknown): value is Partial<Parameter> { return isObject(value); }