Filtering a data in angular with regex expression but doesnot get any output i am filtering data by following way: "trying to do exact match"
$scope.filteredEntries = filterFilter($scope.data, {path:'^/$'})
And $scope.data has following
$scope.data = [{'id':1,'Name':'abc','path':'/'},
{'id':2,'Name':'def','path':'/'},
{'id':3,'Name':'xyz','path':'/abc/'}]
expected data afterfilter
[{'id':1,'Name':'abc','path':'/'},
{'id':2,'Name':'def','path':'/'}]