Convert seconds to hours, minutes, seconds
npm install convert-seconds> Convert seconds to hours, minutes, seconds

```
$ npm install --save convert-seconds
Pass in seconds (as a number or string), and get an object in return:
`js
var convert = require('convert-seconds');
convert(3661);
// => { hours: 1, minutes: 1, seconds: 1 }
convert(3661).hours;
// => 1
convert('3661').minutes;
// => 1
convert(3661).seconds;
// => 1
``
MIT @ Michael Wuergler