Resumo do que se trata o repositório.
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 nextYear = new Date().getFullYear() + 1; | |
const newYearTime = new Date(`January 01 ${nextYear} 00:00:00`); | |
// Tempo atual | |
const currentTime = new Date(); | |
const difference = newYearTime - currentTime; | |
// difference/1000 => retorna o número de segundos que faltam para chegar no primeiro dia do ano que vem |
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
// Retorna um caminho de um determinado tipo (node) | |
const fs = require('fs').promises; // Fazendo o fs usar promises | |
const path = require('path'); | |
async function readdir(rootDir){ | |
rootDir = rootDir || path.resolve(_dirname); | |
const files = await fs.readdir(rootDir); |
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
git add | |
=>. ou arq_name => adiciona o arquivo para commit | |
=> -i abre a opção de interatividade | |
=> Ex.: Queremos tirar arquivos de dentro do commit | |
=> Opção 3 -> Digitar os números referentes ao arq q o git vai dar na hora | |
=> Enter para sair e confirmar os que vão estar fora da instância de commit | |
=> Caro querira recolocar um, opção 4 | |
=> -p => Pergunta qual as modificações q você quer que sejam enviadas em certo arquivo. | |
=> Apresenta umas opções, ao dar enter ele fala cada uma delas | |
=> q = quit |
TDD Describe
{
"Jest Describe": {
"prefix": ["desc", "jdesc"],
"body": [
"describe('', () => {",
" test('Should ', () => {});",
"});",
"",