UNPKG

@mbakgun/n8n-nodes-slack-socket-mode

Version:

Slack Socket Mode Node for n8n that allows you to use +100 Slack events in your n8n instance with proxy mode

14 lines 408 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = delay; /** * Build a Promise that will resolve after the specified number of milliseconds. * @param ms milliseconds to wait * @param value value for eventual resolution */ function delay(ms) { return new Promise((resolve) => { setTimeout(resolve, ms); }); } //# sourceMappingURL=helpers.js.map