MCPcopy Create free account
hub / github.com/angular-ui/ui-router / getUniqueValues

Function getUniqueValues

test/angular/1.5/angular-animate.js:1563–1569  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

1561 }
1562
1563 function getUniqueValues(a, b) {
1564 if (isString(a)) a = a.split(' ');
1565 if (isString(b)) b = b.split(' ');
1566 return a.filter(function(val) {
1567 return b.indexOf(val) === -1;
1568 }).join(' ');
1569 }
1570
1571 function prepareAnchoredAnimation(classes, outAnchor, inAnchor) {
1572 var clone = jqLite(getDomNode(outAnchor).cloneNode(true));

Callers 1

prepareInAnimationFunction · 0.70

Calls 1

isStringFunction · 0.70

Tested by

no test coverage detected