Skip to content

nglibrary/utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2932183 · Jul 17, 2017

History

22 Commits
Jul 15, 2017
Jul 16, 2017
Jul 15, 2017
Jul 15, 2017
Jul 15, 2017
Jul 15, 2017
Jul 15, 2017
Jul 17, 2017
Jul 15, 2017
Jul 16, 2017
Jul 15, 2017
Jul 15, 2017
Jul 15, 2017
Jul 17, 2017
Jul 15, 2017
Jul 15, 2017
Jul 15, 2017
Jul 17, 2017
Jul 15, 2017
Jul 15, 2017
Jul 17, 2017

Repository files navigation

Angular 4+ Utilities

Directives

...more to come soon!

Install

yarn add @nglibrary/utils

Import in your app

import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';

import { UtilsModule } from '@nglibrary/utils'; // <---

@NgModule({
  declarations: [ AppComponent ],
  imports: [
    UtilsModule.forRoot( /* global config */ ) // <---
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }