{"_id":"@brunejo/bjo-join-pipe","_rev":"1-de664b314e16a2b3bae5d0b9ad97946c","name":"@brunejo/bjo-join-pipe","dist-tags":{"latest":"11.0.1"},"versions":{"11.0.1":{"name":"@brunejo/bjo-join-pipe","version":"11.0.1","peerDependencies":{"@angular/common":"^11.0.9","@angular/core":"^11.0.9"},"dependencies":{"tslib":"^2.0.0"},"publishConfig":{"access":"public"},"main":"bundles/brunejo-bjo-join-pipe.umd.js","module":"fesm2015/brunejo-bjo-join-pipe.js","es2015":"fesm2015/brunejo-bjo-join-pipe.js","esm2015":"esm2015/brunejo-bjo-join-pipe.js","fesm2015":"fesm2015/brunejo-bjo-join-pipe.js","typings":"brunejo-bjo-join-pipe.d.ts","metadata":"brunejo-bjo-join-pipe.metadata.json","sideEffects":false,"description":"Pipe to show in a string from an array.","_id":"@brunejo/bjo-join-pipe@11.0.1","_nodeVersion":"10.16.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-QD+EsBh8d5XBreoxH15Pa8sOp1py9073AkP4ts6YD5RcACdToeQxE3fxpMr/hkjiMLDzaM59yO8otw1lul0fvQ==","shasum":"b402f041b2bf643d0003f258ff13324e662862ce","tarball":"https://registry.npmjs.org/@brunejo/bjo-join-pipe/-/bjo-join-pipe-11.0.1.tgz","fileCount":17,"unpackedSize":13900,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgBeqTCRA9TVsSAnZWagAAy8wP/jf0HxuhDWi5i6U+ASqH\nkS9Pa4qdwIf6tcm0sGdatlaGiv5mXZsVYxbuFyuxa90UdC9SAAw1+K8vyyI9\nLKE7laUJE50kHNFv2WKCFSJ7JKgvNn6AyUfaRTt9pmR3O5UcxIuk0vLsSb94\nXs0+XI5yQh4IpzAccVT1YGP6U068ezgAK13QpxmSuWYkVe6G3iOMotRQFGFC\nyiAJaTawl3oJxqqA3c4VnUA1o1bSWXpLAw+TLYdTz333MunCrrGWHY15+0mo\nR1ByNmgTcQhtWXH/0jyAHvWhGrkOCRjsRG6NrpSjewP3ls6ruUqcxG0sHHZz\nvGXixNmR1GBXR9lRLgyeIHkBteZMyThTN+skGEr+VeqA7ud0rr1vlITKaiA1\nPKu0D59TUcluD1GV9VAH93MBxa9glYFeGI46BmjOQxIDcjppn+I1N93lAjku\n+CCnH0KATSFezIQgiN0LkCSOM+Iez8rhe0qOKwgsXi8+ZyDEQY8vjBX2X7Oi\nleK+nsY+7KU84XfbPkkvOetsjbe2kdzAYZwOBbswR6Ad/33shj4HwQ5hOcxW\nm7h66zpDKMeZ+u/MnTFwU2vyg+GGYXg4zrPBCvsR+MVAnZhiPOcdthEbqltD\nwHETktzJ1MFnGt479i7i1NWCnf9tc2ab8S/4GGl7z+9O05/m3TmCh8u/MCvD\nDtra\r\n=PgC0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDAZbldLm6ZncUjvn5NVv0CsnEOQk7y6GCjPvf5AJ6LlgIgPML6PfFs5rl2ufpgdXPwBa8i3vml9dM5qu7xzx5sAhY="}]},"_npmUser":{"name":"brunejo","email":"brunejos@gmail.com"},"directories":{},"maintainers":[{"name":"brunejo","email":"brunejos@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/bjo-join-pipe_11.0.1_1611000467150_0.35709281628251954"},"_hasShrinkwrap":false}},"time":{"created":"2021-01-18T20:07:47.084Z","11.0.1":"2021-01-18T20:07:47.348Z","modified":"2022-04-04T20:49:16.631Z"},"maintainers":[{"name":"brunejo","email":"brunejos@gmail.com"}],"description":"Pipe to show in a string from an array.","readme":"# DdrJoinPipe\n\nPipe to show in a string from an array.\n\n## Installation\n\nUsing npm:\n\n`npm install ddr-join-pipe`\n\n## Usage\n\nIn module:\n\n```ts\n\n// Angular\nimport { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\n\n// Modules\nimport { AppRoutingModule } from './app-routing.module';\nimport { DdrJoinPipeModule } from 'ddr-join-pipe';\n\n@NgModule({\n  declarations: [\n    AppComponent,\n    SampleDdrJoinPipeComponent\n  ],\n  imports: [\n    BrowserModule,\n    AppRoutingModule,\n    DdrJoinPipeModule\n  ],\n  providers: [],\n  bootstrap: [AppComponent]\n})\nexport class AppModule { }\n```\nIn your ts:\n\n```ts\nimport { Component, OnInit } from '@angular/core';\n\n@Component({\n  selector: 'app-sample-ddr-join-pipe',\n  templateUrl: './sample-ddr-join-pipe.component.html',\n  styleUrls: ['./sample-ddr-join-pipe.component.css']\n})\nexport class SampleDdrJoinPipeComponent {\n\n  valores: string[];\n\n  constructor() {\n    this.valores = [\n      \"valor1\",\n      \"valor2\",\n      \"valor3\",\n      \"valor4\",\n      \"valor5\"\n    ]\n\n  }\n\n}\n\n```\n\nIn your html:\n\n```html\n{{valores | join}}\n```\n\n\n","readmeFilename":"README.md"}