UNPKG

n8n-mcp

Version:

Integration between n8n workflow automation and Model Context Protocol (MCP)

12 lines 370 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.tearDownStdin = tearDownStdin; function tearDownStdin(stdin = process.stdin, platform = process.platform) { if (!stdin || stdin.destroyed) return; stdin.pause(); if (platform !== 'win32') { stdin.destroy(); } } //# sourceMappingURL=stdin-teardown.js.map