@instructure/platform-sanitize 0.2.2 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -171,40 +171,42 @@ const d = /* @__PURE__ */ new Set([
171
171
  // throw in modern browsers.
172
172
  RETURN_TRUSTED_TYPE: !0
173
173
  };
174
- let o = null;
174
+ let i = null;
175
175
  function g() {
176
- return o || (o = typeof a == "function" ? a(window) : a, o.addHook("afterSanitizeAttributes", (t) => {
176
+ return i || (i = typeof a == "function" ? a(window) : a, i.addHook("afterSanitizeAttributes", (t) => {
177
177
  if (!(t instanceof Element) || !t.hasAttribute("style")) return;
178
- const e = t.style, i = [];
178
+ const e = t.style, o = [];
179
179
  for (let r = 0; r < e.length; r++) {
180
180
  const n = e.item(r);
181
- d.has(n) || i.push(n);
181
+ d.has(n) || o.push(n);
182
182
  }
183
- for (const r of i) e.removeProperty(r);
183
+ for (const r of o) e.removeProperty(r);
184
184
  e.length === 0 && t.removeAttribute("style");
185
- }), o.addHook("uponSanitizeAttribute", (t, e) => {
185
+ }), i.addHook("uponSanitizeAttribute", (t, e) => {
186
186
  c.has(e.attrName) && l.test(e.attrValue) && (e.keepAttr = !1);
187
- }), o.addHook("afterSanitizeAttributes", (t) => {
187
+ }), i.addHook("afterSanitizeAttributes", (t) => {
188
188
  if (!(t instanceof Element) || !t.hasAttribute("srcset")) return;
189
189
  (t.getAttribute("srcset") ?? "").split(",").map((r) => r.trim().split(/\s+/)[0]).some((r) => l.test(r)) && t.removeAttribute("srcset");
190
- }), o);
190
+ }), i);
191
191
  }
192
- function b(t) {
192
+ function p(t) {
193
193
  if (typeof window > "u")
194
194
  throw new Error("sanitizeHtml requires a DOM environment (window is not defined)");
195
195
  return g().sanitize(t ?? "", f);
196
196
  }
197
- const m = /* @__PURE__ */ new Set(["http:", "https:", "mailto:", "tel:"]), s = "http://platform-sanitize.invalid/";
198
- function p(t) {
197
+ const m = /* @__PURE__ */ new Set(["http:", "https:", "mailto:", "tel:"]), s = "http://platform-sanitize.invalid/", u = /^\s*\/\//;
198
+ function h(t) {
199
199
  if (!t || !t.trim()) return "about:blank";
200
+ const e = t.replace(/\\/g, "/");
201
+ if (u.test(e)) return "about:blank";
200
202
  try {
201
- const e = new URL(t, s);
202
- return m.has(e.protocol) ? e.href.startsWith(s) ? t : e.href : "about:blank";
203
+ const o = new URL(e, s);
204
+ return m.has(o.protocol) ? o.href.startsWith(s) ? t : o.href : "about:blank";
203
205
  } catch {
204
206
  return "about:blank";
205
207
  }
206
208
  }
207
209
  export {
208
- b as sanitizeHtml,
209
- p as sanitizeUrl
210
+ p as sanitizeHtml,
211
+ h as sanitizeUrl
210
212
  };
@@ -1 +1 @@
1
- {"version":3,"file":"sanitizeUrl.d.ts","sourceRoot":"","sources":["../src/sanitizeUrl.ts"],"names":[],"mappings":"AAiBA,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,CAYlE"}
1
+ {"version":3,"file":"sanitizeUrl.d.ts","sourceRoot":"","sources":["../src/sanitizeUrl.ts"],"names":[],"mappings":"AAwBA,wBAAgB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,CAiBlE"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/platform-sanitize",
3
- "version": "0.2.2",
3
+ "version": "0.3.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",