UNPKG

tastypie

Version:

Tastypie is a webservice API framework for Node.js based on Django's Tastypie Framework. It provides a convenient, yet powerful and highly customizable, abstraction for creating REST-style interfaces

18 lines (15 loc) 461 B
define(['../math/countSteps'], function(countSteps){ /** * Parse timestamp into an object. */ function parseMs(ms){ return { milliseconds : countSteps(ms, 1, 1000), seconds : countSteps(ms, 1000, 60), minutes : countSteps(ms, 60000, 60), hours : countSteps(ms, 3600000, 24), days : countSteps(ms, 86400000) }; } return parseMs; });