@ngha/nested-value
Version:
nestedValue the value at `path` of `object`
13 lines • 466 B
JavaScript
import { NgModule } from '@angular/core';
import { NestedValuePipe } from './nested-value.pipe';
import { NestedValueService } from './nested-value.service';
export class NestedValueModule {
}
NestedValueModule.decorators = [
{ type: NgModule, args: [{
declarations: [NestedValuePipe],
exports: [NestedValuePipe],
providers: [NestedValueService]
},] }
];
//# sourceMappingURL=nested-value.module.js.map