custom-chatbot-app
Version:
This is my custom chatbot package for BuyersEdge
14 lines • 572 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCurrentTime = void 0;
var getCurrentTime = function () {
var currentTime = new Date();
var hours = currentTime.getHours();
var minutes = currentTime.getMinutes();
var amPm = hours >= 12 ? 'PM' : 'AM';
var displayHours = hours % 12 || 12;
var timeString = "".concat(displayHours, ":").concat(minutes < 10 ? '0' : '').concat(minutes, " ").concat(amPm);
return timeString;
};
exports.getCurrentTime = getCurrentTime;
//# sourceMappingURL=getCurrentTime.js.map