Jake

Results 5 comments of Jake

and change this line. https://github.com/dchester/epilogue/blob/ce700a7b543fda7fa105643e3d6bae66b488c73d/lib/Controllers/read.js#L29 I think you need to add a method to util.keys as a replacement for Object.keys, which will return all the object keys as an array....

You can use Reflect.ownKeys if exists to get all keys. ``` let obj = { enum: 1, 'non-enum': 2, [Symbol('symbol_key')]: 3 }; Object.defineProperty(obj, 'non-enum', { enumerable: false }); Object.getOwnPropertyNames(obj); //...

sorry, I can check test in the evening when I get home.

How do you like this solution? Way of getting a workable injector in this context. ```ts export function loadChildren(useFactory: () => Route[]): LoadChildren { @NgModule({ imports: [RouterModule.forChild([])], providers: [{ provide:...