This file contains hidden or 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
#UpGas | |
Order Status Flow | |
Requested* | |
driver accepts order -> InProgress | |
resale accepts order -> InProgress | |
driver rejects order -> RejectByDriver | |
resale rejects order -> RejectByResale | |
customer cancels order -> CanceledByCustomer | |
InProgress |
This file contains hidden or 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 displayText = (text) => console.log(text); | |
displayText('The powerfull webpack'); |
This file contains hidden or 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
chore: add Oyster build script //Pequenas alterações que não são novas funcionalidades. | |
docs: explain hat wobble //Semelhante a uma wiki; documentações etc. | |
feat: add beta sequence //Criação de Nova funcionalidade; | |
fix: remove error message //Correção de bugs | |
refactor: share logic 4d3d3d3 //Refatoração de um código | |
style: convert tabs to spaces //Alteração em estilos, formatação de código etc. | |
test: ensure that increment //Criação de testes da sua aplicação |
This file contains hidden or 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 ICalculator(){}; | |
/* | |
Interface contract. | |
*/ | |
ICalculator.prototype.Sum = function(a, b){ | |
throw new Error('You have that implement this.'); | |
}; | |
ICalculator.prototype.Subtraction = function(a, b){ | |
throw new Error('You have that implement this.'); |