Ariel Mashraki

Results 198 comments of Ariel Mashraki

@dsaf I'm a Unix user, so if anyone here that is a Windows user could upload to NuGet, it's will be great. Anyway, you've four different options, see: [Getting Started](https://github.com/a8m/angular-filter#get-started)

Can you provide some fiddle/jsbin @dnozay ? Thx.

Thanks @toddbranch, I'll take a look at this asap.

Agree with @mallowigi @toddbranch, would you mind updating it? thanks

LGTM. We should add `isUndefined(collection)` test on [line 15](https://github.com/a8m/angular-filter/blob/master/src/_filter/collection/where.js#L15-L17). feel free to PR. thx

Cast to int sounds like a great solution. Thanks @Rodeoclash , feel free to PR.

LGTM to support numbers as a strings, and we can go this way to test it.. ``` js if(isString(input)) { var num = Number(input); return num != num // isNaN...

Filters mostly used in the view, IMO we can support strings. why ? like @SoundLogic sayed: > this is a display value and we are not actually changing the underlying...

Sorry about the delay @SoundLogic let me know what do you think about this design ? ``` js // create some filter factory $math.filterFacotry(fn) { return function(input) { input =...

I think we should align with `$parse` take a look please: [example](http://jsbin.com/neqezu/1/edit?html,js,output) thanks.