UNPKG

@splitsoftware/splitio-commons

Version:
8 lines (7 loc) 276 B
import { endsWith } from '../../utils/lang'; export function endsWithMatcherContext(ruleAttr) { return function endsWithMatcher(runtimeAttr) { var strEndsWith = ruleAttr.some(function (e) { return endsWith(runtimeAttr, e); }); return strEndsWith; }; }