UNPKG

@splitsoftware/splitio-commons

Version:
9 lines (6 loc) 237 B
export function greaterThanEqualMatcherContext(ruleAttr: number) { return function greaterThanEqualMatcher(runtimeAttr: number): boolean { const isGreaterThanEqual = runtimeAttr >= ruleAttr; return isGreaterThanEqual; }; }