"use strict"; const makeUnits = require("../make-units"); module.exports = makeUnits([ {unit: "nanoseconds", toNext: 1000}, {unit: "microseconds", toNext: 1000}, {unit: "milliseconds", toNext: 1000}, {unit: "seconds", toNext: 60}, {unit: "minutes", toNext: 60}, {unit: "hours", toNext: 24}, {unit: "days"} ]);