[New Feature Template]- Feature Name
This is a template to create the documentation of a new feature or module.
Code Examples
const time = () => {
if (seconds < TIMES.minSeconds) {
return `0${seconds}`;
}
return seconds;
};
// this function returns the time in secondsLast updated