get-microwave-time

Get the microwave time representation of an integer


License
GPL-3.0
Install
npm install get-microwave-time@0.0.1

Documentation

get-microwave-time

Get the microwave time representation of an integer using TypeScript or Node.js!

Installation

$ npm install --save get-microwave-time

Basic TypeScript usage

import { getMicrowaveTime } from 'get-microwave-time';

getMicrowaveTime(90); // '01:30'

Basic Node.js usage

let getMicrowaveTime = require('get-microwave-time').getMicrowaveTime;

getMicrowaveTime(90); // '01:30'

Advanced usage

Don't. Just... don't.