Nick

Results 8 comments of Nick

Yes. Please can you cut a new release with this fix (and probably others). Willing to help with that if needed.

Why not copy the logic of the standard angular pipes when it comes to null values... https://github.com/angular/angular/blob/master/packages/common/src/pipes/date_pipe.ts ``` transform(value: any, format = 'mediumDate', timezone?: string, locale?: string): string|null { if...

I recently had to translate ag-grid's filter model to fit our odata service. It wasn't pretty. I'm not sure that kind code should be *inside* o.js But a library for...

Just started looking into a similar problem. Routing messages of varying payloads to UI components that are interested in them is not a trivial task given the current architecture.

// Disabled rule because the third-party API chokes on anything else. // tslint:disable-next-line:any-rule-you-want const runsWithScisors: any = 3; Would it be that much more difficult to support both? Have an...

Did this setting every get implemented? If so what is it called?

Controlling the CWD from the outside means any actions after bestzip have to account for the folder change. `build && cd dist && bestzip ../output.zip ./* && cd .. &&...