astro-ghostcms/.pnpm-store/v3/files/30/7316b27d60a64c07984ffff574e...

17 lines
389 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
Object.defineProperty(exports, '__esModule', {
value: true
});
exports.default = escapeHTML;
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
function escapeHTML(str) {
return str.replace(/</g, '&lt;').replace(/>/g, '&gt;');
}