UNPKG

n8n-nodes-sshv2

Version:

2 N8N ( Node & AI Agent Tool) for SSH operations Dynamically Configurable parameters NO credentials, including command execution, file uploads, and downloads by Hadidiz, HadidizFlow

10 lines 381 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.formatPrivateKey = formatPrivateKey; function formatPrivateKey(privateKey) { if (privateKey.startsWith('-----BEGIN')) { return privateKey; } return `-----BEGIN OPENSSH PRIVATE KEY-----\n${privateKey}\n-----END OPENSSH PRIVATE KEY-----`; } //# sourceMappingURL=utilities.js.map