12 lines
285 B
JavaScript
Raw Normal View History

2024-10-25 18:09:59 +08:00
export function getCurrTime() {
return Math.floor(Date.now() / 1000);
}
export function promisify(func) {
return (args = {}) => new Promise((resolve, reject) => {
func(Object.assign(args, {
success: resolve,
fail: reject,
}));
});
}