Skip to content

Instantly share code, notes, and snippets.

View rivenvirus's full-sized avatar

Santiago Pérez rivenvirus

  • Sorcode
  • Mérida Yucatán
View GitHub Profile
@rivenvirus
rivenvirus / pipes.module.ts
Last active November 22, 2020 13:32
Thumbor Pipe for Angular 7
import { NgModule } from '@angular/core';
import { ThumborPipe } from './thumbor.pipe';
@NgModule({
imports: [
// dep modules
],
declarations: [
ThumborPipe
],