UNPKG

@qaflag/core

Version:

Base requirements for the QA Flag library

6 lines (4 loc) 193 B
import { ValueInterface } from '../../value/value.interface'; export const isValueInterface = (x: any): x is ValueInterface => { return x['$'] !== undefined && x['context'] && x['name']; };