0.0.1 • Published 3 years ago

ehc-join-pipe v0.0.1

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

EhcJoinPipe

Pipe to show in a string from an array.

Installation

Using npm:

npm install ehc-join-pipe

Usage

In module:

// Angular
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

// Modules
import { AppRoutingModule } from './app-routing.module';
import { EhcJoinPipeModule } from 'ehc-join-pipe';

@NgModule({
  declarations: [
    AppComponent,
    SampleDdrJoinPipeComponent
  ],
  imports: [
    BrowserModule,
    AppRoutingModule,
    EhcJoinPipeModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

In your ts:

import { Component, OnInit } from '@angular/core';


@Component({
    selector: 'app-ehc-join-pipe',
    templateUrl: './ehc-join-pipe.component.html',
    styleUrls: ['./ehc-join-pipe.component.css']
})
export class EhcJoinPipeComponent implements OnInit {

    public valoresNulo: any = null;
    public valores: string [] = [
        'valor 1',
        'valor 2',
        'valor 3',
        'valor 4',
        'valor 5'
    ];

    constructor() { }

    ngOnInit(): void {
    }

}

In your html:

{{valores | join}}