UNPKG

@splitsoftware/splitio-commons

Version:
11 lines (7 loc) 302 B
import { IBetweenMatcherData } from '../../dtos/types'; export function betweenMatcherContext(ruleVO: IBetweenMatcherData) { return function betweenMatcher(runtimeAttr: number): boolean { const isBetween = runtimeAttr >= ruleVO.start && runtimeAttr <= ruleVO.end; return isBetween; }; }