1.0.0 • Published 6 years ago

meepo-md5 v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

md5 for angular service

import { Md5Module } from 'meepo-md5';
@NgModule({
  imports: [
    Md5Module.forRoot()
  ]
})
export class AppModule { }
import { Md5Service } from 'meepo-md5';

export class AppComponent implements OnInit {
  title = 'app';
  constructor(
    public md5: Md5Service
  ) {}
  ngOnInit(){
    console.log(this.md5.md5('value'));
  }
}