()
| 24 | it('should return null for an unsupported type', () => { |
| 25 | const pipe = new KeyValuePipe(defaultKeyValueDiffers); |
| 26 | const fn = () => {}; |
| 27 | expect(pipe.transform(fn as any as null)).toEqual(null); |
| 28 | }); |
| 29 | describe('object dictionary', () => { |
no outgoing calls