UNPKG

slack-edge

Version:

Slack app development framework for edge functions with streamlined TypeScript support

15 lines 473 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.escapeHtml = escapeHtml; /** * Escapes special characters in HTML data for security. * @param input input string * @returns safe string */ function escapeHtml(input) { if (input) { return input.replace(/&/g, "&amp;").replace(/</g, "&lt;").replace(/>/g, "&gt;").replace(/"/g, "&quot;").replace(/'/g, "&#x27;"); } return ""; } //# sourceMappingURL=escape-html.js.map