@soos-io/api-client
Advanced tools
Comparing version 0.1.5-pre.8 to 0.1.5-pre.9
@@ -16,3 +16,3 @@ "use strict"; | ||
const day = now.getDate().toString().padStart(2, "0"); | ||
const hours = now.getHours().toString().padStart(2, "0"); | ||
const hours = (now.getHours() % 12 || 12).toString().padStart(2, "0"); | ||
const ampm = now.getHours() >= 12 ? "PM" : "AM"; | ||
@@ -19,0 +19,0 @@ const minutes = now.getMinutes().toString().padStart(2, "0"); |
{ | ||
"name": "@soos-io/api-client", | ||
"version": "0.1.5-pre.8", | ||
"version": "0.1.5-pre.9", | ||
"description": "This is the SOOS API Client for registered clients leveraging the various integrations to the SOOS platform.", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
34922