@wordpress/escape-html
Version:
78 lines (76 loc) • 2.93 kB
JavaScript
;
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// packages/escape-html/src/index.ts
var index_exports = {};
__export(index_exports, {
escapeAmpersand: () => escapeAmpersand,
escapeAttribute: () => escapeAttribute,
escapeEditableHTML: () => escapeEditableHTML,
escapeHTML: () => escapeHTML,
escapeLessThan: () => escapeLessThan,
escapeQuotationMark: () => escapeQuotationMark,
isValidAttributeName: () => isValidAttributeName
});
module.exports = __toCommonJS(index_exports);
var import_escape_greater = __toESM(require("./escape-greater.cjs"));
var REGEXP_INVALID_ATTRIBUTE_NAME = /[\u007F-\u009F "'>/="\uFDD0-\uFDEF]/;
function escapeAmpersand(value) {
return value.replace(/&(?!([a-z0-9]+|#[0-9]+|#x[a-f0-9]+);)/gi, "&");
}
function escapeQuotationMark(value) {
return value.replace(/"/g, """);
}
function escapeLessThan(value) {
return value.replace(/</g, "<");
}
function escapeAttribute(value) {
return (0, import_escape_greater.default)(
escapeLessThan(escapeQuotationMark(escapeAmpersand(value)))
);
}
function escapeHTML(value) {
return escapeLessThan(escapeAmpersand(value));
}
function escapeEditableHTML(value) {
return escapeLessThan(value.replace(/&/g, "&"));
}
function isValidAttributeName(name) {
return !REGEXP_INVALID_ATTRIBUTE_NAME.test(name);
}
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
escapeAmpersand,
escapeAttribute,
escapeEditableHTML,
escapeHTML,
escapeLessThan,
escapeQuotationMark,
isValidAttributeName
});
//# sourceMappingURL=index.cjs.map