@sap/ux-ui5-tooling 1.15.0 → 1.15.2

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.
@@ -37,7 +37,7 @@ var require_encodeurl = __commonJS({
37
37
  "../../node_modules/encodeurl/index.js"(exports2, module2) {
38
38
  "use strict";
39
39
  module2.exports = encodeUrl;
40
- var ENCODE_CHARS_REGEXP = /(?:[^\x21\x25\x26-\x3B\x3D\x3F-\x5B\x5D\x5F\x61-\x7A\x7E]|%(?:[^0-9A-Fa-f]|[0-9A-Fa-f][^0-9A-Fa-f]|$))+/g;
40
+ var ENCODE_CHARS_REGEXP = /(?:[^\x21\x23-\x3B\x3D\x3F-\x5F\x61-\x7A\x7C\x7E]|%(?:[^0-9A-Fa-f]|[0-9A-Fa-f][^0-9A-Fa-f]|$))+/g;
41
41
  var UNMATCHED_SURROGATE_PAIR_REGEXP = /(^|[^\uD800-\uDBFF])[\uDC00-\uDFFF]|[\uD800-\uDBFF]([^\uDC00-\uDFFF]|$)/g;
42
42
  var UNMATCHED_SURROGATE_PAIR_REPLACE = "$1\uFFFD$2";
43
43
  function encodeUrl(url) {
@@ -1379,6 +1379,20 @@ var require_destroy = __commonJS({
1379
1379
  }
1380
1380
  });
1381
1381
 
1382
+ // ../../node_modules/send/node_modules/encodeurl/index.js
1383
+ var require_encodeurl2 = __commonJS({
1384
+ "../../node_modules/send/node_modules/encodeurl/index.js"(exports2, module2) {
1385
+ "use strict";
1386
+ module2.exports = encodeUrl;
1387
+ var ENCODE_CHARS_REGEXP = /(?:[^\x21\x25\x26-\x3B\x3D\x3F-\x5B\x5D\x5F\x61-\x7A\x7E]|%(?:[^0-9A-Fa-f]|[0-9A-Fa-f][^0-9A-Fa-f]|$))+/g;
1388
+ var UNMATCHED_SURROGATE_PAIR_REGEXP = /(^|[^\uD800-\uDBFF])[\uDC00-\uDFFF]|[\uD800-\uDBFF]([^\uDC00-\uDFFF]|$)/g;
1389
+ var UNMATCHED_SURROGATE_PAIR_REPLACE = "$1\uFFFD$2";
1390
+ function encodeUrl(url) {
1391
+ return String(url).replace(UNMATCHED_SURROGATE_PAIR_REGEXP, UNMATCHED_SURROGATE_PAIR_REPLACE).replace(ENCODE_CHARS_REGEXP, encodeURI);
1392
+ }
1393
+ }
1394
+ });
1395
+
1382
1396
  // ../../node_modules/etag/index.js
1383
1397
  var require_etag = __commonJS({
1384
1398
  "../../node_modules/etag/index.js"(exports2, module2) {
@@ -1920,7 +1934,7 @@ var require_send = __commonJS({
1920
1934
  var debug = require_src()("send");
1921
1935
  var deprecate = require_depd()("send");
1922
1936
  var destroy = require_destroy();
1923
- var encodeUrl = require_encodeurl();
1937
+ var encodeUrl = require_encodeurl2();
1924
1938
  var escapeHtml = require_escape_html();
1925
1939
  var etag = require_etag();
1926
1940
  var fresh = require_fresh();
@@ -2121,7 +2135,7 @@ var require_send = __commonJS({
2121
2135
  return;
2122
2136
  }
2123
2137
  var loc = encodeUrl(collapseLeadingSlashes(this.path + "/"));
2124
- var doc = createHtmlDocument("Redirecting", 'Redirecting to <a href="' + escapeHtml(loc) + '">' + escapeHtml(loc) + "</a>");
2138
+ var doc = createHtmlDocument("Redirecting", "Redirecting to " + escapeHtml(loc));
2125
2139
  res.statusCode = 301;
2126
2140
  res.setHeader("Content-Type", "text/html; charset=UTF-8");
2127
2141
  res.setHeader("Content-Length", Buffer.byteLength(doc));
@@ -2549,7 +2563,7 @@ var require_serve_static = __commonJS({
2549
2563
  originalUrl.path = null;
2550
2564
  originalUrl.pathname = collapseLeadingSlashes(originalUrl.pathname + "/");
2551
2565
  var loc = encodeUrl(url.format(originalUrl));
2552
- var doc = createHtmlDocument("Redirecting", 'Redirecting to <a href="' + escapeHtml(loc) + '">' + escapeHtml(loc) + "</a>");
2566
+ var doc = createHtmlDocument("Redirecting", "Redirecting to " + escapeHtml(loc));
2553
2567
  res.statusCode = 301;
2554
2568
  res.setHeader("Content-Type", "text/html; charset=UTF-8");
2555
2569
  res.setHeader("Content-Length", Buffer.byteLength(doc));
@@ -21833,6 +21847,13 @@ destroy/index.js:
21833
21847
  * MIT Licensed
21834
21848
  *)
21835
21849
 
21850
+ encodeurl/index.js:
21851
+ (*!
21852
+ * encodeurl
21853
+ * Copyright(c) 2016 Douglas Christopher Wilson
21854
+ * MIT Licensed
21855
+ *)
21856
+
21836
21857
  etag/index.js:
21837
21858
  (*!
21838
21859
  * etag