const format = require('date-fns/format');
const formatDistance = require('date-fns/formatDistance');
const subDays = require('date-fns/subDays');
const sub = require('date-fns/sub');
const today = new Date();
const todayFormat = format(today, 'yyyy/MM/dd');
Check => https://gist.github.com/nicobytes/7fb83f8feab37ef7b31923cdeb4e20c8 https://app.quickdatabasediagrams.com/#/
// src/tasks/entities/user.entity.ts
import { Entity, Column, PrimaryGeneratedColumn } from 'typeorm';
@Entity()
export class User{
Elegir el issue que quieres traducir en la board oficial ⇒ https://github.com/angular-hispano/angular/projects/2
Preparar tu entorno, para eso debes descargar el repo y luego correr pruebas unitarias y de integración para asegurar que todo este en funcionamiento antes de iniciar.
git clone your-fork
cd angular
yarn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const data = [1,3,4,5]; | |
const rta = data.reduce((counter, item) => counter + item, 0); | |
console.log(rta); | |
const orders = [ | |
{ | |
customerName: 'Nicolas', | |
total: 60, | |
delivered: true, | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const orders = [ | |
{ | |
customerName: 'Nicolas', | |
total: 60, | |
delivered: true, | |
}, | |
{ | |
customerName: 'Zulema', | |
total: 120, | |
delivered: false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.github/workflows/lighthouse-ci.yml | |
```yml | |
name: Lighthouse CI | |
on: [push] | |
jobs: | |
lhci: | |
name: Lighthouse CI | |
runs-on: ubuntu-latest | |
steps: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const numbers = [1,2,3,4]; | |
// Mutable | |
for (let index = 0; index < numbers.length; index++) { | |
numbers[index] = numbers[index] + 2; | |
} | |
console.log(numbers); | |
// Inmutable v1 | |
const newNumbers = []; | |
for (let index = 0; index < numbers.length; index++) { |