================= ObjectToArrayPipe ================= .. list-table:: :widths: auto :stub-columns: 1 * - Source - `ObjectToArray `__ Transforms an object into an array, to easily \*ngFor repeat for an object. ------- Example ------- - typescript .. code-block:: typescript this.listObj = { a: { name: 'a' }, b: { name: 'b' }, c: { name: 'c' } } ::
{{ entry.name }}
**will render: a, b, c**