UNPKG

@splitsoftware/splitio-commons

Version:
8 lines (7 loc) 276 B
import { startsWith } from '../../utils/lang'; export function startsWithMatcherContext(ruleAttr) { return function startsWithMatcher(runtimeAttr) { var matches = ruleAttr.some(function (e) { return startsWith(runtimeAttr, e); }); return matches; }; }