项目作者: meepobrother

项目描述 :
md5 for angular service
高级语言: JavaScript
项目地址: git://github.com/meepobrother/meepo-md5.git
创建时间: 2017-12-22T02:47:48Z
项目社区:https://github.com/meepobrother/meepo-md5

开源协议:MIT License

下载


md5 for angular service

  1. import { Md5Module } from 'meepo-md5';
  2. @NgModule({
  3. imports: [
  4. Md5Module.forRoot()
  5. ]
  6. })
  7. export class AppModule { }
  1. import { Md5Service } from 'meepo-md5';
  2. export class AppComponent implements OnInit {
  3. title = 'app';
  4. constructor(
  5. public md5: Md5Service
  6. ) {}
  7. ngOnInit(){
  8. console.log(this.md5.md5('value'));
  9. }
  10. }