-
Notifications
You must be signed in to change notification settings - Fork 27.4k
feat(filterFilter): allow overwriting the special $
property name
#13356
feat(filterFilter): allow overwriting the special $
property name
#13356
Conversation
Previously, the special property name that would match against any property was hard-coded to `$`. With this commit, the user can specify an arbitrary property name, by passing a 4th argument to `filterFilter()`. E.g.: ```js var items = [{foo: 'bar'}, {baz: 'qux'}]; var expr = {'%': 'bar'}; console.log(filterFilter(items, expr, null, '%')); // [{foo: 'bar'}] ``` Fixes angular#13313
/cc @petebacondarwin (see #13313 (comment)) |
@@ -59,6 +60,9 @@ | |||
* Primitive values are converted to strings. Objects are not compared against primitives, | |||
* unless they have a custom `toString` method (e.g. `Date` objects). | |||
* | |||
* @param {string=} specialKey The special property name that matches against any property. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we call this parameter anyPropertyKey
?
Other than the param name, this all looks good to me. But I think we should wait for 1.5.0 to land now. |
890b2a0
to
64f08ef
Compare
Updated the param name. I'm fine with waiting for |
Since this not a BC, should we add it to 1.5? |
Maybe I miunderstood @petebacondarwin's comment. He probably meant to merge this in a subsequent Since this is neither a BC nor a fix, I'm fine either way. |
I think I meant that we were about about release 1.5.0 so we should just put it in a 1.5.x release |
Previously, the special property name that would match against any property was hard-coded to `$`. With this commit, the user can specify an arbitrary property name, by passing a 4th argument to `filterFilter()`. E.g.: ```js var items = [{foo: 'bar'}, {baz: 'qux'}]; var expr = {'%': 'bar'}; console.log(filterFilter(items, expr, null, '%')); // [{foo: 'bar'}] ``` Fixes #13313 PR (#13356)
Previously, the special property name that would match against any
property was hard-coded to
$
.With this commit, the user can specify an arbitrary property name,
by passing a 4th argument to
filterFilter()
. E.g.:Fixes #13313