We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As funcionalidades da biblioteca são desacritas abaixo
module.exports.time = function () { return +new Date(); }; module.exports.segundos = function () { return new Date().getSeconds(); }; module.exports.minutos = function () { return new Date().getMinutes(); }; module.exports.horas = function () { return new Date().getHours(); }; module.exports.horario = function (timestamp) { let timeFormatted = timestamp !== null ? new Date(timestamp) : new Date(); return timeFormatted; }; module.exports.dormir = function (ms) { let now = new Date().getTime(); while (new Date().getTime() < now + ms) { } return null; };
The text was updated successfully, but these errors were encountered:
@lucaspompeun Posso fazer, depois da aprovação da PR em aberto. #27
Sorry, something went wrong.
@leonelsanchesdasilva a PR #27 aceita e já está na documentação em produção
@lucaspompeun Perfeito, obrigado! Deve ser minha próxima contribuição.
No branches or pull requests
As funcionalidades da biblioteca são desacritas abaixo
The text was updated successfully, but these errors were encountered: