wechaty-puppet-official-account
Version:
Wechaty Puppet for WeChat Official Accounts
12 lines • 364 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getTimeStampString = void 0;
function getTimeStampString() {
let now = new Date().getTime();
if (now > 9999999999) {
now = Math.ceil(now / 1000);
}
return now.toString();
}
exports.getTimeStampString = getTimeStampString;
//# sourceMappingURL=utils.js.map