UNPKG

minutes

Version:

Get the number of minutes for an hour, day, week and the elapsed minutes for the current day.

15 lines (11 loc) 289 B
/*! * minutes <https://github.com/jonschlinkert/minutes> * * Copyright (c) 2014 Jon Schlinkert, contributors. * Licensed under the MIT license. */ 'use strict'; var seconds = require('seconds'); module.exports = function(timespan) { return Math.round(seconds(timespan) / 60); };