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
function decode(arr) { | |
const singleStrArr = arr.join('').split('') | |
return singleStrArr | |
.filter((i, j) => | |
!Number(i) | |
&& Number(singleStrArr[j + 1])) | |
.join('') | |
} |
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
1. Look who helped the enemy jg to know his position and where he will gank | |
2. To know if he is early or midgame to know when he will gank | |
3. smiterino to train smite | |
4. A video for minimap awareness https://www.youtube.com/watch?v=lYmgW4UkyZU | |
5. Gank only the winners teammates/lanes | |
6. At beginning be carefull with the minion wave | |
7. Mute all at start | |
8. If the enemy JG is dead still his camps, priorize his camps | |
9. If you see him in the oposite site of the map, still the most you can advantage(gank, camps or objectives) | |
10. The mirror rule |
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 cnpj = (value) => { | |
console.log(value, 'o valor q entrou') | |
var cnpj = value.replace(/[^\d]+/g,''); | |
// cnpjs inválidos conhecidos | |
const numbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'] | |
for(i of numbers) { | |
if (i.repeat(14) === cnpj) { return false} | |
} |
-
Ser DESCRITIVO, nada de links apenas, tem que ter resumo das tasks e serem numeradas. Links são info adicionais não o escopo da task.
-
Export do requestly anexado se tiver que usá-lo.
-
Link de onde testar SEMPRE, e se em mais de um lugar. Link completo de tds eles.
-
Info adicional em casos diferentes que necessitem de algo a mais.
-
Quaisquer mudanças ou alterações discutidas em comentários DEVEM SER ACRESCENTADAS na descrição do PR, não é bom gastarmos tempo lendo tds os comentários em tds os sites q a pessoa discutiu o PR.
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
{ | |
"name": "@bluefoot/mirch", | |
"version": "0.1.0", | |
"private": true, | |
"dependencies": { | |
"@babel/preset-env": "^7.0.0", | |
"@bluefoot/ymir": "^0.3.8", | |
"axios": "^0.18.0", | |
"html-react-parser": "^0.6.1", | |
"husky": "^1.3.1", |
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 emailValidation = email => /\S+@\S+\.\S+/.test(email) ? true : false; | |
export default emailValidation |
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
<header class="header"> | |
<button class="open_menu">Open</button> | |
<div class="logo">Logo</div> | |
<nav class="nav"> | |
<ul class="main_menu"> | |
<a href="#"> | |
<li>Option1</li> | |
</a> | |
<a href="#"> | |
<li>Option2</li> |
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
Show hidden characters
{ | |
"presets": ["es2015", "react"], | |
"plugins": [ | |
["transform-class-properties", { "spec": true }] | |
] | |
} |
NewerOlder