@kosatyi/ejs 0.0.103 → 0.0.104

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.
@@ -1476,9 +1476,9 @@ function _output(path, scope) {
1476
1476
  });
1477
1477
  }
1478
1478
 
1479
- var templates = {};
1479
+ var templateCache = {};
1480
1480
  var getOrigin = function getOrigin(url, secure) {
1481
- url = new URL(url);
1481
+ url = URL.parse(url);
1482
1482
  url.protocol = secure ? 'https:' : 'http:';
1483
1483
  return url.origin;
1484
1484
  };
@@ -1487,8 +1487,8 @@ var _EJS = new EJS({
1487
1487
  withObject: false,
1488
1488
  resolver: function resolver(path, name) {
1489
1489
  return new Promise(function (resolve, reject) {
1490
- if (templates.hasOwnProperty(name)) {
1491
- resolve(templates[name]);
1490
+ if (isFunction(templateCache[name])) {
1491
+ resolve(templateCache[name]);
1492
1492
  } else {
1493
1493
  reject(new TemplateNotFound("template ".concat(name, " not found")));
1494
1494
  }
@@ -1498,12 +1498,18 @@ var _EJS = new EJS({
1498
1498
  render = _EJS.render,
1499
1499
  context = _EJS.context,
1500
1500
  helpers = _EJS.helpers,
1501
- configure = _EJS.configure,
1502
- create = _EJS.create;
1503
- function setTemplates(list) {
1504
- Object.assign(templates, list || {});
1501
+ configure = _EJS.configure;
1502
+ function useTemplates() {
1503
+ var templates = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1504
+ Object.assign(templateCache, templates);
1505
1505
  }
1506
1506
 
1507
+ /**
1508
+ * @deprecated Renamed to `useTemplates`
1509
+ * @param {Object<string,any>} templates
1510
+ */
1511
+ var setTemplates = useTemplates;
1512
+
1507
1513
  /**
1508
1514
  * @typedef {{}} HonoContext
1509
1515
  * @property {function(*):Promise<Response>} html
@@ -1518,11 +1524,14 @@ function setTemplates(list) {
1518
1524
  * @param {Object<string,any>} options
1519
1525
  * @return {(function(c:HonoContext, next): Promise<any>)|*}
1520
1526
  */
1521
- function setRenderer() {
1527
+ function useRenderer() {
1522
1528
  var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
1529
+ _ref$templates = _ref.templates,
1530
+ templates = _ref$templates === void 0 ? {} : _ref$templates,
1523
1531
  version = _ref.version,
1524
1532
  _ref$secure = _ref.secure,
1525
1533
  secure = _ref$secure === void 0 ? true : _ref$secure;
1534
+ useTemplates(templates);
1526
1535
  return /*#__PURE__*/function () {
1527
1536
  var _ref2 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee(c, next) {
1528
1537
  return _regeneratorRuntime().wrap(function _callee$(_context) {
@@ -1558,15 +1567,19 @@ function setRenderer() {
1558
1567
  }();
1559
1568
  }
1560
1569
 
1561
- //export { render, context, helpers, configure, create }
1570
+ /**
1571
+ * @deprecated Renamed to `useRenderer`
1572
+ */
1573
+ var setRenderer = useRenderer;
1562
1574
 
1563
1575
  exports.TemplateError = TemplateError;
1564
1576
  exports.TemplateNotFound = TemplateNotFound;
1565
1577
  exports.TemplateSyntaxError = TemplateSyntaxError;
1566
1578
  exports.configure = configure;
1567
1579
  exports.context = context;
1568
- exports.create = create;
1569
1580
  exports.helpers = helpers;
1570
1581
  exports.render = render;
1571
1582
  exports.setRenderer = setRenderer;
1572
1583
  exports.setTemplates = setTemplates;
1584
+ exports.useRenderer = useRenderer;
1585
+ exports.useTemplates = useTemplates;
@@ -1005,21 +1005,21 @@ class EJS {
1005
1005
  }
1006
1006
  }
1007
1007
 
1008
- const templates = {};
1008
+ const templateCache = {};
1009
1009
 
1010
1010
  const getOrigin = (url, secure) => {
1011
- url = new URL(url);
1011
+ url = URL.parse(url);
1012
1012
  url.protocol = secure ? 'https:' : 'http:';
1013
1013
  return url.origin
1014
1014
  };
1015
1015
 
1016
- const { render, context, helpers, configure, create } = new EJS({
1016
+ const { render, context, helpers, configure } = new EJS({
1017
1017
  cache: false,
1018
1018
  withObject: false,
1019
1019
  resolver(path, name) {
1020
1020
  return new Promise((resolve, reject) => {
1021
- if (templates.hasOwnProperty(name)) {
1022
- resolve(templates[name]);
1021
+ if (isFunction(templateCache[name])) {
1022
+ resolve(templateCache[name]);
1023
1023
  } else {
1024
1024
  reject(new TemplateNotFound(`template ${name} not found`));
1025
1025
  }
@@ -1028,13 +1028,18 @@ const { render, context, helpers, configure, create } = new EJS({
1028
1028
  });
1029
1029
 
1030
1030
  /**
1031
- *
1032
- * @param list
1031
+ * @param {Object<string,any>} templates
1033
1032
  */
1034
- function setTemplates(list) {
1035
- Object.assign(templates, list || {});
1033
+ function useTemplates(templates = {}) {
1034
+ Object.assign(templateCache, templates);
1036
1035
  }
1037
1036
 
1037
+ /**
1038
+ * @deprecated Renamed to `useTemplates`
1039
+ * @param {Object<string,any>} templates
1040
+ */
1041
+ const setTemplates = useTemplates;
1042
+
1038
1043
  /**
1039
1044
  * @typedef {{}} HonoContext
1040
1045
  * @property {function(*):Promise<Response>} html
@@ -1049,7 +1054,8 @@ function setTemplates(list) {
1049
1054
  * @param {Object<string,any>} options
1050
1055
  * @return {(function(c:HonoContext, next): Promise<any>)|*}
1051
1056
  */
1052
- function setRenderer({ version, secure = true } = {}) {
1057
+ function useRenderer({ templates = {}, version, secure = true } = {}) {
1058
+ useTemplates(templates);
1053
1059
  return async (c, next) => {
1054
1060
  c.data = context({});
1055
1061
  c.data.set('version', version);
@@ -1064,6 +1070,9 @@ function setRenderer({ version, secure = true } = {}) {
1064
1070
  }
1065
1071
  }
1066
1072
 
1067
- //export { render, context, helpers, configure, create }
1073
+ /**
1074
+ * @deprecated Renamed to `useRenderer`
1075
+ */
1076
+ const setRenderer = useRenderer;
1068
1077
 
1069
- export { TemplateError, TemplateNotFound, TemplateSyntaxError, configure, context, create, helpers, render, setRenderer, setTemplates };
1078
+ export { TemplateError, TemplateNotFound, TemplateSyntaxError, configure, context, helpers, render, setRenderer, setTemplates, useRenderer, useTemplates };
@@ -1480,9 +1480,9 @@
1480
1480
  });
1481
1481
  }
1482
1482
 
1483
- var templates = {};
1483
+ var templateCache = {};
1484
1484
  var getOrigin = function getOrigin(url, secure) {
1485
- url = new URL(url);
1485
+ url = URL.parse(url);
1486
1486
  url.protocol = secure ? 'https:' : 'http:';
1487
1487
  return url.origin;
1488
1488
  };
@@ -1491,8 +1491,8 @@
1491
1491
  withObject: false,
1492
1492
  resolver: function resolver(path, name) {
1493
1493
  return new Promise(function (resolve, reject) {
1494
- if (templates.hasOwnProperty(name)) {
1495
- resolve(templates[name]);
1494
+ if (isFunction(templateCache[name])) {
1495
+ resolve(templateCache[name]);
1496
1496
  } else {
1497
1497
  reject(new TemplateNotFound("template ".concat(name, " not found")));
1498
1498
  }
@@ -1502,12 +1502,18 @@
1502
1502
  render = _EJS.render,
1503
1503
  context = _EJS.context,
1504
1504
  helpers = _EJS.helpers,
1505
- configure = _EJS.configure,
1506
- create = _EJS.create;
1507
- function setTemplates(list) {
1508
- Object.assign(templates, list || {});
1505
+ configure = _EJS.configure;
1506
+ function useTemplates() {
1507
+ var templates = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
1508
+ Object.assign(templateCache, templates);
1509
1509
  }
1510
1510
 
1511
+ /**
1512
+ * @deprecated Renamed to `useTemplates`
1513
+ * @param {Object<string,any>} templates
1514
+ */
1515
+ var setTemplates = useTemplates;
1516
+
1511
1517
  /**
1512
1518
  * @typedef {{}} HonoContext
1513
1519
  * @property {function(*):Promise<Response>} html
@@ -1522,11 +1528,14 @@
1522
1528
  * @param {Object<string,any>} options
1523
1529
  * @return {(function(c:HonoContext, next): Promise<any>)|*}
1524
1530
  */
1525
- function setRenderer() {
1531
+ function useRenderer() {
1526
1532
  var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
1533
+ _ref$templates = _ref.templates,
1534
+ templates = _ref$templates === void 0 ? {} : _ref$templates,
1527
1535
  version = _ref.version,
1528
1536
  _ref$secure = _ref.secure,
1529
1537
  secure = _ref$secure === void 0 ? true : _ref$secure;
1538
+ useTemplates(templates);
1530
1539
  return /*#__PURE__*/function () {
1531
1540
  var _ref2 = _asyncToGenerator(/*#__PURE__*/_regeneratorRuntime().mark(function _callee(c, next) {
1532
1541
  return _regeneratorRuntime().wrap(function _callee$(_context) {
@@ -1562,17 +1571,21 @@
1562
1571
  }();
1563
1572
  }
1564
1573
 
1565
- //export { render, context, helpers, configure, create }
1574
+ /**
1575
+ * @deprecated Renamed to `useRenderer`
1576
+ */
1577
+ var setRenderer = useRenderer;
1566
1578
 
1567
1579
  exports.TemplateError = TemplateError;
1568
1580
  exports.TemplateNotFound = TemplateNotFound;
1569
1581
  exports.TemplateSyntaxError = TemplateSyntaxError;
1570
1582
  exports.configure = configure;
1571
1583
  exports.context = context;
1572
- exports.create = create;
1573
1584
  exports.helpers = helpers;
1574
1585
  exports.render = render;
1575
1586
  exports.setRenderer = setRenderer;
1576
1587
  exports.setTemplates = setTemplates;
1588
+ exports.useRenderer = useRenderer;
1589
+ exports.useTemplates = useTemplates;
1577
1590
 
1578
1591
  }));
@@ -1 +1 @@
1
- !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).ejs={})}(this,(function(t){"use strict";function e(t,e,n){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:n;throw new TypeError("Private element is not present on this object")}function n(t,e,n,r,o,i,u){try{var a=t[i](u),c=a.value}catch(t){return void n(t)}a.done?e(c):Promise.resolve(c).then(r,o)}function r(t,e,n){return e=l(e),function(t,e){if(e&&("object"==typeof e||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,v()?Reflect.construct(e,n||[],l(t).constructor):e.apply(t,n))}function o(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function u(t,n){return t.get(e(t,n))}function a(t,e,n){o(t,e),e.set(t,n)}function c(t,n,r){return t.set(e(t,n),r),r}function s(t,e){o(t,e),e.add(t)}function h(t,e,n){return e&&function(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,g(r.key),r)}}(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t}function f(t,e,n){return(e=g(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function l(t){return l=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},l(t)}function p(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&d(t,e)}function v(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(v=function(){return!!t})()}function y(){y=function(){return e};var t,e={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(t,e,n){t[e]=n.value},i="function"==typeof Symbol?Symbol:{},u=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",c=i.toStringTag||"@@toStringTag";function s(t,e,n){return Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{s({},"")}catch(t){s=function(t,e,n){return t[e]=n}}function h(t,e,n,r){var i=e&&e.prototype instanceof m?e:m,u=Object.create(i.prototype),a=new F(r||[]);return o(u,"_invoke",{value:L(t,n,a)}),u}function f(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}e.wrap=h;var l="suspendedStart",p="suspendedYield",v="executing",d="completed",g={};function m(){}function w(){}function b(){}var E={};s(E,u,(function(){return this}));var j=Object.getPrototypeOf,k=j&&j(j(W([])));k&&k!==n&&r.call(k,u)&&(E=k);var O=b.prototype=m.prototype=Object.create(E);function x(t){["next","throw","return"].forEach((function(e){s(t,e,(function(t){return this._invoke(e,t)}))}))}function P(t,e){function n(o,i,u,a){var c=f(t[o],t,i);if("throw"!==c.type){var s=c.arg,h=s.value;return h&&"object"==typeof h&&r.call(h,"__await")?e.resolve(h.__await).then((function(t){n("next",t,u,a)}),(function(t){n("throw",t,u,a)})):e.resolve(h).then((function(t){s.value=t,u(s)}),(function(t){return n("throw",t,u,a)}))}a(c.arg)}var i;o(this,"_invoke",{value:function(t,r){function o(){return new e((function(e,o){n(t,r,e,o)}))}return i=i?i.then(o,o):o()}})}function L(e,n,r){var o=l;return function(i,u){if(o===v)throw Error("Generator is already running");if(o===d){if("throw"===i)throw u;return{value:t,done:!0}}for(r.method=i,r.arg=u;;){var a=r.delegate;if(a){var c=S(a,r);if(c){if(c===g)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===l)throw o=d,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=v;var s=f(e,n,r);if("normal"===s.type){if(o=r.done?d:p,s.arg===g)continue;return{value:s.arg,done:r.done}}"throw"===s.type&&(o=d,r.method="throw",r.arg=s.arg)}}}function S(e,n){var r=n.method,o=e.iterator[r];if(o===t)return n.delegate=null,"throw"===r&&e.iterator.return&&(n.method="return",n.arg=t,S(e,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),g;var i=f(o,e.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,g;var u=i.arg;return u?u.done?(n[e.resultName]=u.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,g):u:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,g)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function M(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function F(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function W(e){if(e||""===e){var n=e[u];if(n)return n.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function n(){for(;++o<e.length;)if(r.call(e,o))return n.value=e[o],n.done=!1,n;return n.value=t,n.done=!0,n};return i.next=i}}throw new TypeError(typeof e+" is not iterable")}return w.prototype=b,o(O,"constructor",{value:b,configurable:!0}),o(b,"constructor",{value:w,configurable:!0}),w.displayName=s(b,c,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===w||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,s(t,c,"GeneratorFunction")),t.prototype=Object.create(O),t},e.awrap=function(t){return{__await:t}},x(P.prototype),s(P.prototype,a,(function(){return this})),e.AsyncIterator=P,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var u=new P(h(t,n,r,o),i);return e.isGeneratorFunction(n)?u:u.next().then((function(t){return t.done?t.value:u.next()}))},x(O),s(O,c,"Generator"),s(O,u,(function(){return this})),s(O,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),n=[];for(var r in e)n.push(r);return n.reverse(),function t(){for(;n.length;){var r=n.pop();if(r in e)return t.value=r,t.done=!1,t}return t.done=!0,t}},e.values=W,F.prototype={constructor:F,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(M),!e)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var n=this;function o(r,o){return a.type="throw",a.arg=e,n.next=r,o&&(n.method="next",n.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var u=this.tryEntries[i],a=u.completion;if("root"===u.tryLoc)return o("end");if(u.tryLoc<=this.prev){var c=r.call(u,"catchLoc"),s=r.call(u,"finallyLoc");if(c&&s){if(this.prev<u.catchLoc)return o(u.catchLoc,!0);if(this.prev<u.finallyLoc)return o(u.finallyLoc)}else if(c){if(this.prev<u.catchLoc)return o(u.catchLoc,!0)}else{if(!s)throw Error("try statement without catch or finally");if(this.prev<u.finallyLoc)return o(u.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var u=i?i.completion:{};return u.type=t,u.arg=e,i?(this.method="next",this.next=i.finallyLoc,g):this.complete(u)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),g},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),M(n),g}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var r=n.completion;if("throw"===r.type){var o=r.arg;M(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,n,r){return this.delegate={iterator:W(e),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=t),g}},e}function d(t,e){return d=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},d(t,e)}function g(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e);if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t,"string");return"symbol"==typeof e?e:e+""}function m(t){var e="function"==typeof Map?new Map:void 0;return m=function(t){if(null===t||!function(t){try{return-1!==Function.toString.call(t).indexOf("[native code]")}catch(e){return"function"==typeof t}}(t))return t;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return function(t,e,n){if(v())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,e);var o=new(t.bind.apply(t,r));return n&&d(o,n.prototype),o}(t,arguments,l(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),d(n,t)},m(t)}var w=function(){var t=[].slice.call(arguments),e=t.shift();return t.filter(e).pop()},b=function(t){return Array.isArray(t)},E=function(t){return"function"==typeof t},j=function(t){return"string"==typeof t},k=function(t){return"boolean"==typeof t},O=function(t){return void 0===t},x="[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0),P={"'":"'","\\":"\\","\r":"r","\n":"n","\t":"t","\u2028":"u2028","\u2029":"u2029"},L={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;"},S=function(t){return new RegExp(["[",Object.keys(t).join(""),"]"].join(""),"g")},T=S(L),M=S(P),F=function(){return(""+(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"")).replace(T,(function(t){return L[t]}))},W=function(t,e){var n=t;return null==n?"":!0===Boolean(e)?F(n):n},_=function(t,e){if(!1===function(t,e){return Boolean(t instanceof e)}(t,e))throw new TypeError("".concat(t," in not instance of ").concat(e))},N=function(t,e,n){for(var r=t,o=String(e).split("."),i=o.pop(),u=0;u<o.length;u++){var a=o[u];if(E(r.toJSON)&&(r=r.toJSON()),n&&!1===r.hasOwnProperty(a)){r={};break}r=r[a]=r[a]||{}}return E(r.toJSON)&&(r=r.toJSON()),[r,i]},B=function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return n.filter((function(t){return t})).reduce((function(t,e){return Object.assign(t,e)}),t)},R=function(){},C=function(t,e){var n;for(n in t)$(t,n)&&e(t[n],n,t)},A=function(t,e){return function(t,e){var n=t instanceof Array,r=n?[]:{};return C(t,(function(t,o,i){var u=e(t,o,i);!1===O(u)&&(n?r.push(u):r[o]=u)})),r}(t,(function(t,n){if(-1===e.indexOf(n))return t}))},$=function(t,e){return t&&t.hasOwnProperty(e)},U={export:"ejsPrecompiled",cache:!0,chokidar:null,path:"views",resolver:function(t,e){return Promise.resolve(["resolver is not defined",t,e].join(" "))},extension:"ejs",rmWhitespace:!0,withObject:!0,globalHelpers:[],vars:{SCOPE:"ejs",COMPONENT:"ui",ELEMENT:"el",EXTEND:"$$e",BUFFER:"$$a",LAYOUT:"$$l",BLOCKS:"$$b",MACRO:"$$m",SAFE:"$$v"},token:{start:"<%",end:"%>",regex:"([\\s\\S]+?)"}},q=function(t,e){B(t,{path:w(j,U.path,t.path,e.path),export:w(j,U.export,t.export,e.export),resolver:w(E,U.resolver,t.resolver,e.resolver),extension:w(j,U.extension,t.extension,e.extension),withObject:w(k,U.withObject,t.withObject,e.withObject),rmWhitespace:w(k,U.rmWhitespace,t.rmWhitespace,e.rmWhitespace),cache:w(k,U.cache,t.cache,e.cache),token:B({},U.token,t.token,e.token),vars:B({},U.vars,t.vars,e.vars),globalHelpers:w(b,U.globalHelpers,t.globalHelpers,e.globalHelpers)})},H="undefined"!=typeof globalThis?globalThis:window||self,G=new WeakMap,J=new WeakMap,Y=function(){return h((function t(e){i(this,t),a(this,G,!0),a(this,J,{}),this.configure(e)}),[{key:"load",value:function(t){u(G,this)&&B(u(J,this),t||{})}},{key:"get",value:function(t){if(u(G,this))return u(J,this)[t]}},{key:"set",value:function(t,e){u(G,this)&&(u(J,this)[t]=e)}},{key:"exist",value:function(t){if(u(G,this))return $(u(J,this),t)}},{key:"clear",value:function(){c(J,this,{})}},{key:"remove",value:function(t){delete u(J,this)[t]}},{key:"resolve",value:function(t){return Promise.resolve(this.get(t))}},{key:"configure",value:function(t){c(G,this,t.cache),!1===x&&this.load(H[t.export])}}])}(),D=new WeakMap,I=new WeakMap,K=function(){return h((function t(e){i(this,t),a(this,D,{}),a(this,I,[{symbol:"-",format:function(t){return"')\n".concat(this.BUFFER,"(").concat(this.SAFE,"(").concat(t,",1))\n").concat(this.BUFFER,"('")}},{symbol:"=",format:function(t){return"')\n".concat(this.BUFFER,"(").concat(this.SAFE,"(").concat(t,"))\n").concat(this.BUFFER,"('")}},{symbol:"#",format:function(t){return"')\n/**".concat(t,"**/\n").concat(this.BUFFER,"('")}},{symbol:"",format:function(t){return"')\n".concat(t.trim(),"\n").concat(this.BUFFER,"('")}}]),this.configure(e)}),[{key:"configure",value:function(t){var e=this;u(D,this).withObject=t.withObject,u(D,this).rmWhitespace=t.rmWhitespace,u(D,this).token=t.token,u(D,this).vars=t.vars,u(D,this).globalHelpers=t.globalHelpers,u(D,this).matches=[],u(D,this).formats=[],u(D,this).slurp={match:"[s\t\n]*",start:[u(D,this).token.start,"_"],end:["_",u(D,this).token.end]},u(I,this).forEach((function(t){u(D,e).matches.push(u(D,e).token.start.concat(t.symbol).concat(u(D,e).token.regex).concat(u(D,e).token.end)),u(D,e).formats.push(t.format.bind(u(D,e).vars))})),u(D,this).regex=new RegExp(u(D,this).matches.join("|").concat("|$"),"g"),u(D,this).slurpStart=new RegExp([u(D,this).slurp.match,u(D,this).slurp.start.join("")].join(""),"gm"),u(D,this).slurpEnd=new RegExp([u(D,this).slurp.end.join(""),u(D,this).slurp.match].join(""),"gm")}},{key:"compile",value:function(t,e){var n=this,r=u(D,this).vars,o=r.SCOPE,i=r.SAFE,a=r.BUFFER,c=r.COMPONENT,s=r.ELEMENT,h=u(D,this).globalHelpers;u(D,this).rmWhitespace&&(t=String(t).replace(/[\r\n]+/g,"\n").replace(/^\s+|\s+$/gm,"")),t=String(t).replace(u(D,this).slurpStart,u(D,this).token.start).replace(u(D,this).slurpEnd,u(D,this).token.end);var f,l,p,v="".concat(a,"('");f=u(D,this).regex,l=function(e,r,o){v+=(""+t.slice(r,o)).replace(M,(function(t){return"\\"+P[t]})),e.forEach((function(t,e){t&&(v+=u(D,n).formats[e](t))}))},p=0,t.replace(f,(function(){var t=[].slice.call(arguments,0,-1),e=t.pop(),n=t.shift();return l(t,p,e),p=e+n.length,n})),v="try{".concat(v+="');","}catch(e){return ").concat(a,".error(e)}"),u(D,this).withObject&&(v="with(".concat(o,"){").concat(v,"}")),v="".concat(a,".start();").concat(v,"return ").concat(a,".end();"),v+="\n//# sourceURL=".concat(e);var y=null,d=[o,c,s,a,i].concat(h);try{(y=Function.apply(null,d.concat(v))).source="(function(".concat(d.join(","),"){\n").concat(v,"\n});")}catch(t){throw t.filename=e,t.source=v,t}return y}}])}(),V=new WeakMap,X=new WeakMap,z=new WeakMap,Q=new WeakMap,Z=new WeakSet,tt=function(){return h((function t(e,n,r){i(this,t),s(this,Z),a(this,V,void 0),a(this,X,void 0),a(this,z,void 0),a(this,Q,void 0),_(n,Y),_(r,K),c(X,this,n),c(z,this,r),this.configure(e)}),[{key:"configure",value:function(t){c(V,this,t.path),E(t.resolver)&&c(Q,this,t.resolver)}},{key:"get",value:function(t){var n=this;return u(X,this).exist(t)?u(X,this).resolve(t):e(Z,this,et).call(this,t).then((function(r){return e(Z,n,nt).call(n,t,e(Z,n,rt).call(n,r,t))}))}}])}();function et(t){return u(Q,this).call(this,u(V,this),t)}function nt(t,e){return u(X,this).set(t,e),e}function rt(t,e){return E(t)?t:u(z,this).compile(t,e)}var ot=["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"],it=" ",ut='"',at="/",ct="<",st=">",ht=function(t,e,n){var r=[],o=-1===ot.indexOf(t),i=function(t,e){var n=[];return C(t,(function(t,r,o){var i=e(t,r,o);!1===O(i)&&n.push(i)})),n}(e,(function(t,e){if(null!=t)return[F(e),[ut,F(t),ut].join("")].join("=")})).join(it);return r.push([ct,t,it,i,st].join("")),n&&o&&r.push(n instanceof Array?n.join(""):n),o&&r.push([ct,at,t,st].join("")),r.join("")},ft=function(t){function e(t){var n;return i(this,e),f(n=r(this,e),"code",0),n.message=t,n}return p(e,t),h(e,[{key:"getCode",value:function(){return this.code}},{key:"getMessage",value:function(){return this.message}},{key:"toString",value:function(){return this.getMessage()}}])}(m(Error)),lt=function(t){function e(){var t;i(this,e);for(var n=arguments.length,o=new Array(n),u=0;u<n;u++)o[u]=arguments[u];return f(t=r(this,e,[].concat(o)),"code",404),t}return p(e,t),h(e)}(ft),pt=function(t){function e(){var t;i(this,e);for(var n=arguments.length,o=new Array(n),u=0;u<n;u++)o[u]=arguments[u];return f(t=r(this,e,[].concat(o)),"code",500),t}return p(e,t),h(e)}(ft);function vt(t){return Promise.all(t||[]).then((function(t){return t.join("")})).catch((function(t){return t}))}function yt(){var t=[],e=[],n=function(t){e.push(t)};return n.start=function(){e=[]},n.backup=function(){t.push(e.concat()),e=[]},n.restore=function(){var n=e.concat();return e=t.pop(),vt(n)},n.error=function(t){return e=t,Promise.reject(new pt(e.message));var e},n.end=function(){return vt(e)},n}var dt=Symbol("ContextScope.parentTemplate"),gt=new WeakMap,mt=function(){return h((function t(e,n){i(this,t),a(this,gt,void 0),this.configure(e,n)}),[{key:"create",value:function(t){return new(u(gt,this))(t)}},{key:"configure",value:function(t,e){c(gt,this,function(t,e){var n=t.vars,r=n.BLOCKS,o=n.MACRO,i=n.EXTEND,u=n.LAYOUT,a=n.BUFFER,c=n.SAFE,s=n.SCOPE,h=n.COMPONENT,f=n.ELEMENT;function l(t){this[dt]=null,this[r]={},this[o]={},Object.assign(this,A(t,[s,a,c,h,f]))}return Object.assign(l.prototype,e),Object.defineProperty(l.prototype,a,{value:yt()}),Object.defineProperty(l.prototype,r,{value:{},writable:!0}),Object.defineProperty(l.prototype,o,{value:{},writable:!0}),Object.defineProperty(l.prototype,u,{value:!1,writable:!0}),Object.defineProperty(l.prototype,i,{value:!1,writable:!0}),Object.defineProperty(l.prototype,dt,{value:null,writable:!0}),Object.defineProperties(l.prototype,{setParentTemplate:{value:function(t){return this[dt]=t,this}},getParentTemplate:{value:function(){return this[dt]}},useSafeValue:{get:function(){return W}},useComponent:{get:function(){return E(this[h])?this[h].bind(this):function(){throw new Error("".concat(h," must be a function"))}}},useElement:{get:function(){return E(this[f])?this[f].bind(this):function(){throw new Error("".concat(f," must be a function"))}}},getMacro:{value:function(){return this[o]}},getBuffer:{value:function(){return this[a]}},getBlocks:{value:function(){return this[r]}},setExtend:{value:function(t){return this[i]=t,this}},getExtend:{value:function(){return this[i]}},setLayout:{value:function(t){return this[u]=t,this}},getLayout:{value:function(){return this[u]}},clone:{value:function(t){var e=[u,i,a];return!0===t&&e.push(r),A(this,e)}},extend:{value:function(t){this.setExtend(!0),this.setLayout(t)}},echo:{value:function(t){var e=this.getBuffer();[].slice.call(arguments).forEach(e)}},fn:{value:function(t){var e=this.getBuffer(),n=this;return function(){if(E(t))return e.backup(),e(t.apply(n,arguments)),e.restore()}}},macro:{value:function(t,e){var n=this.getMacro(),r=this.fn(e),o=this;n[t]=function(){return o.echo(r.apply(void 0,arguments))}}},call:{value:function(t){var e=this.getMacro()[t],n=[].slice.call(arguments,1);if(E(e))return e.apply(e,n)}},block:{value:function(t,e){var n=this,r=this.getBlocks();if(r[t]=r[t]||[],r[t].push(this.fn(e)),!this.getExtend()){var o=Object.assign([],r[t]),i=function(){return o.shift()},u=function(){var t=i();return t?function(){n.echo(t(u()))}:R};this.echo(i()(u()))}}},hasBlock:{value:function(t){return this.getBlocks().hasOwnProperty(t)}},include:{value:function(t,e,n){var r=!1===n?{}:this.clone(!0),o=B(r,e||{}),i=this.render(t,o);this.echo(i)}},use:{value:function(t,e){var n=this;this.echo(Promise.resolve(this.require(t)).then((function(t){var r=n.getMacro();C(t,(function(t,n){r[[e,n].join(".")]=t}))})))}},async:{value:function(t,e){this.echo(Promise.resolve(t).then(e))}},get:{value:function(t,e){var n=N(this,t,!0),r=n.shift(),o=n.pop();return $(r,o)?r[o]:e}},set:{value:function(t,e){var n=N(this,t,!1),r=n.shift(),o=n.pop();return this.getParentTemplate()&&$(r,o)?r[o]:r[o]=e}},each:{value:function(t,e){j(t)&&(t=this.get(t,[])),C(t,e)},writable:!0},el:{value:function(t,e,n){n=E(n)?this.fn(n)():n,this.echo(Promise.resolve(n).then((function(n){return ht(t,e,n)})))},writable:!0},ui:{value:function(t){},writable:!0}}),l}(t,e))}},{key:"helpers",value:function(t){B(u(gt,this).prototype,t||{})}}])}(),wt=new WeakMap,bt=new WeakMap,Et=new WeakMap,jt=new WeakMap,kt=new WeakMap,Ot=new WeakMap,xt=new WeakSet,Pt=function(){return h((function t(e){i(this,t),s(this,xt),a(this,wt,{}),a(this,bt,{}),a(this,Et,void 0),a(this,jt,void 0),a(this,kt,void 0),a(this,Ot,void 0),q(u(wt,this),e||{}),c(Et,this,new mt(u(wt,this),u(bt,this))),c(jt,this,new K(u(wt,this))),c(kt,this,new Y(u(wt,this))),c(Ot,this,new tt(u(wt,this),u(kt,this),u(jt,this))),function(t){(arguments.length>1&&void 0!==arguments[1]?arguments[1]:[]).forEach((function(e){e in t&&(t[e]=t[e].bind(t))}))}(this,["configure","create","render","require","context","preload","compile","helpers"]),this.helpers({require:this.require,render:this.render})}),[{key:"configure",value:function(t){return q(u(wt,this),t||{}),u(Et,this).configure(u(wt,this),u(bt,this)),u(jt,this).configure(u(wt,this)),u(kt,this).configure(u(wt,this)),u(Ot,this).configure(u(wt,this)),u(wt,this)}},{key:"filePath",value:function(t){return function(t,e){var n=t.split(".").pop();return n!==e&&(t=[t,e].join(".")),t}(t,u(wt,this).extension)}},{key:"require",value:function(t){var n=this.context({});return e(xt,this,Lt).call(this,this.filePath(t),n).then((function(){return n.getMacro()}))}},{key:"render",value:function(t,n){var r=this.context(n);return e(xt,this,Lt).call(this,this.filePath(t),r).then(this.outputContent(t,r))}},{key:"outputContent",value:function(t,e){var n=this;return function(r){return e.getExtend()?(e.setExtend(!1),n.renderLayout(e.getLayout(),e,t)):r}}},{key:"renderLayout",value:function(t,n,r){var o=this.context(n);return r&&o.setParentTemplate(r),e(xt,this,Lt).call(this,this.filePath(t),o).then(this.outputContent(t,o))}},{key:"helpers",value:function(t){u(Et,this).helpers(B(u(bt,this),t))}},{key:"context",value:function(t){return u(Et,this).create(t)}},{key:"compile",value:function(t,e){return u(jt,this).compile(t,e)}},{key:"preload",value:function(t){return u(kt,this).load(t||{})}},{key:"create",value:function(t){return new this.constructor(t)}}])}();function Lt(t,e){var n=u(wt,this).globalHelpers,r=[e,e.useComponent,e.useElement,e.getBuffer(),e.useSafeValue],o=n.filter((function(t){return E(e[t])})).map((function(t){return e[t].bind(e)}));return u(Ot,this).get(t).then((function(t){return t.apply(e,r.concat(o))}))}var St={},Tt=function(t,e){return(t=new URL(t)).protocol=e?"https:":"http:",t.origin},Mt=new Pt({cache:!1,withObject:!1,resolver:function(t,e){return new Promise((function(t,n){St.hasOwnProperty(e)?t(St[e]):n(new lt("template ".concat(e," not found")))}))}}),Ft=Mt.render,Wt=Mt.context,_t=Mt.helpers,Nt=Mt.configure,Bt=Mt.create;t.TemplateError=ft,t.TemplateNotFound=lt,t.TemplateSyntaxError=pt,t.configure=Nt,t.context=Wt,t.create=Bt,t.helpers=_t,t.render=Ft,t.setRenderer=function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.version,r=t.secure,o=void 0===r||r;return function(){var t,r=(t=y().mark((function t(n,r){return y().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return n.data=Wt({}),n.data.set("version",e),n.data.set("origin",Tt(n.req.url,o)),n.data.set("path",n.req.path),n.data.set("query",n.req.query()),n.ejs=function(t,e){return Ft(t,Object.assign({param:n.req.param()},n.data,e))},n.helpers=function(t){return _t(t)},n.render=function(t,e){return n.html(n.ejs(t,e))},t.next=10,r();case 10:case"end":return t.stop()}}),t)})),function(){var e=this,r=arguments;return new Promise((function(o,i){var u=t.apply(e,r);function a(t){n(u,o,i,a,c,"next",t)}function c(t){n(u,o,i,a,c,"throw",t)}a(void 0)}))});return function(t,e){return r.apply(this,arguments)}}()},t.setTemplates=function(t){Object.assign(St,t||{})}}));
1
+ !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).ejs={})}(this,(function(t){"use strict";function e(t,e,n){if("function"==typeof t?t===e:t.has(e))return arguments.length<3?e:n;throw new TypeError("Private element is not present on this object")}function n(t,e,n,r,o,i,u){try{var a=t[i](u),c=a.value}catch(t){return void n(t)}a.done?e(c):Promise.resolve(c).then(r,o)}function r(t,e,n){return e=l(e),function(t,e){if(e&&("object"==typeof e||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}(t)}(t,v()?Reflect.construct(e,n||[],l(t).constructor):e.apply(t,n))}function o(t,e){if(e.has(t))throw new TypeError("Cannot initialize the same private elements twice on an object")}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function u(t,n){return t.get(e(t,n))}function a(t,e,n){o(t,e),e.set(t,n)}function c(t,n,r){return t.set(e(t,n),r),r}function s(t,e){o(t,e),e.add(t)}function h(t,e,n){return e&&function(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,g(r.key),r)}}(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t}function f(t,e,n){return(e=g(e))in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function l(t){return l=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},l(t)}function p(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&d(t,e)}function v(){try{var t=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){})))}catch(t){}return(v=function(){return!!t})()}function y(){y=function(){return e};var t,e={},n=Object.prototype,r=n.hasOwnProperty,o=Object.defineProperty||function(t,e,n){t[e]=n.value},i="function"==typeof Symbol?Symbol:{},u=i.iterator||"@@iterator",a=i.asyncIterator||"@@asyncIterator",c=i.toStringTag||"@@toStringTag";function s(t,e,n){return Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}),t[e]}try{s({},"")}catch(t){s=function(t,e,n){return t[e]=n}}function h(t,e,n,r){var i=e&&e.prototype instanceof m?e:m,u=Object.create(i.prototype),a=new F(r||[]);return o(u,"_invoke",{value:L(t,n,a)}),u}function f(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}e.wrap=h;var l="suspendedStart",p="suspendedYield",v="executing",d="completed",g={};function m(){}function w(){}function b(){}var E={};s(E,u,(function(){return this}));var j=Object.getPrototypeOf,k=j&&j(j(W([])));k&&k!==n&&r.call(k,u)&&(E=k);var O=b.prototype=m.prototype=Object.create(E);function x(t){["next","throw","return"].forEach((function(e){s(t,e,(function(t){return this._invoke(e,t)}))}))}function P(t,e){function n(o,i,u,a){var c=f(t[o],t,i);if("throw"!==c.type){var s=c.arg,h=s.value;return h&&"object"==typeof h&&r.call(h,"__await")?e.resolve(h.__await).then((function(t){n("next",t,u,a)}),(function(t){n("throw",t,u,a)})):e.resolve(h).then((function(t){s.value=t,u(s)}),(function(t){return n("throw",t,u,a)}))}a(c.arg)}var i;o(this,"_invoke",{value:function(t,r){function o(){return new e((function(e,o){n(t,r,e,o)}))}return i=i?i.then(o,o):o()}})}function L(e,n,r){var o=l;return function(i,u){if(o===v)throw Error("Generator is already running");if(o===d){if("throw"===i)throw u;return{value:t,done:!0}}for(r.method=i,r.arg=u;;){var a=r.delegate;if(a){var c=S(a,r);if(c){if(c===g)continue;return c}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===l)throw o=d,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=v;var s=f(e,n,r);if("normal"===s.type){if(o=r.done?d:p,s.arg===g)continue;return{value:s.arg,done:r.done}}"throw"===s.type&&(o=d,r.method="throw",r.arg=s.arg)}}}function S(e,n){var r=n.method,o=e.iterator[r];if(o===t)return n.delegate=null,"throw"===r&&e.iterator.return&&(n.method="return",n.arg=t,S(e,n),"throw"===n.method)||"return"!==r&&(n.method="throw",n.arg=new TypeError("The iterator does not provide a '"+r+"' method")),g;var i=f(o,e.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,g;var u=i.arg;return u?u.done?(n[e.resultName]=u.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,g):u:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,g)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function M(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function F(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function W(e){if(e||""===e){var n=e[u];if(n)return n.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length)){var o=-1,i=function n(){for(;++o<e.length;)if(r.call(e,o))return n.value=e[o],n.done=!1,n;return n.value=t,n.done=!0,n};return i.next=i}}throw new TypeError(typeof e+" is not iterable")}return w.prototype=b,o(O,"constructor",{value:b,configurable:!0}),o(b,"constructor",{value:w,configurable:!0}),w.displayName=s(b,c,"GeneratorFunction"),e.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===w||"GeneratorFunction"===(e.displayName||e.name))},e.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,b):(t.__proto__=b,s(t,c,"GeneratorFunction")),t.prototype=Object.create(O),t},e.awrap=function(t){return{__await:t}},x(P.prototype),s(P.prototype,a,(function(){return this})),e.AsyncIterator=P,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var u=new P(h(t,n,r,o),i);return e.isGeneratorFunction(n)?u:u.next().then((function(t){return t.done?t.value:u.next()}))},x(O),s(O,c,"Generator"),s(O,u,(function(){return this})),s(O,"toString",(function(){return"[object Generator]"})),e.keys=function(t){var e=Object(t),n=[];for(var r in e)n.push(r);return n.reverse(),function t(){for(;n.length;){var r=n.pop();if(r in e)return t.value=r,t.done=!1,t}return t.done=!0,t}},e.values=W,F.prototype={constructor:F,reset:function(e){if(this.prev=0,this.next=0,this.sent=this._sent=t,this.done=!1,this.delegate=null,this.method="next",this.arg=t,this.tryEntries.forEach(M),!e)for(var n in this)"t"===n.charAt(0)&&r.call(this,n)&&!isNaN(+n.slice(1))&&(this[n]=t)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(e){if(this.done)throw e;var n=this;function o(r,o){return a.type="throw",a.arg=e,n.next=r,o&&(n.method="next",n.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var u=this.tryEntries[i],a=u.completion;if("root"===u.tryLoc)return o("end");if(u.tryLoc<=this.prev){var c=r.call(u,"catchLoc"),s=r.call(u,"finallyLoc");if(c&&s){if(this.prev<u.catchLoc)return o(u.catchLoc,!0);if(this.prev<u.finallyLoc)return o(u.finallyLoc)}else if(c){if(this.prev<u.catchLoc)return o(u.catchLoc,!0)}else{if(!s)throw Error("try statement without catch or finally");if(this.prev<u.finallyLoc)return o(u.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n];if(o.tryLoc<=this.prev&&r.call(o,"finallyLoc")&&this.prev<o.finallyLoc){var i=o;break}}i&&("break"===t||"continue"===t)&&i.tryLoc<=e&&e<=i.finallyLoc&&(i=null);var u=i?i.completion:{};return u.type=t,u.arg=e,i?(this.method="next",this.next=i.finallyLoc,g):this.complete(u)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),g},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),M(n),g}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var r=n.completion;if("throw"===r.type){var o=r.arg;M(n)}return o}}throw Error("illegal catch attempt")},delegateYield:function(e,n,r){return this.delegate={iterator:W(e),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=t),g}},e}function d(t,e){return d=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},d(t,e)}function g(t){var e=function(t,e){if("object"!=typeof t||!t)return t;var n=t[Symbol.toPrimitive];if(void 0!==n){var r=n.call(t,e);if("object"!=typeof r)return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(t)}(t,"string");return"symbol"==typeof e?e:e+""}function m(t){var e="function"==typeof Map?new Map:void 0;return m=function(t){if(null===t||!function(t){try{return-1!==Function.toString.call(t).indexOf("[native code]")}catch(e){return"function"==typeof t}}(t))return t;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,n)}function n(){return function(t,e,n){if(v())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,e);var o=new(t.bind.apply(t,r));return n&&d(o,n.prototype),o}(t,arguments,l(this).constructor)}return n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),d(n,t)},m(t)}var w=function(){var t=[].slice.call(arguments),e=t.shift();return t.filter(e).pop()},b=function(t){return Array.isArray(t)},E=function(t){return"function"==typeof t},j=function(t){return"string"==typeof t},k=function(t){return"boolean"==typeof t},O=function(t){return void 0===t},x="[object process]"===Object.prototype.toString.call("undefined"!=typeof process?process:0),P={"'":"'","\\":"\\","\r":"r","\n":"n","\t":"t","\u2028":"u2028","\u2029":"u2029"},L={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;"},S=function(t){return new RegExp(["[",Object.keys(t).join(""),"]"].join(""),"g")},T=S(L),M=S(P),F=function(){return(""+(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"")).replace(T,(function(t){return L[t]}))},W=function(t,e){var n=t;return null==n?"":!0===Boolean(e)?F(n):n},_=function(t,e){if(!1===function(t,e){return Boolean(t instanceof e)}(t,e))throw new TypeError("".concat(t," in not instance of ").concat(e))},N=function(t,e,n){for(var r=t,o=String(e).split("."),i=o.pop(),u=0;u<o.length;u++){var a=o[u];if(E(r.toJSON)&&(r=r.toJSON()),n&&!1===r.hasOwnProperty(a)){r={};break}r=r[a]=r[a]||{}}return E(r.toJSON)&&(r=r.toJSON()),[r,i]},B=function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return n.filter((function(t){return t})).reduce((function(t,e){return Object.assign(t,e)}),t)},R=function(){},C=function(t,e){var n;for(n in t)$(t,n)&&e(t[n],n,t)},A=function(t,e){return function(t,e){var n=t instanceof Array,r=n?[]:{};return C(t,(function(t,o,i){var u=e(t,o,i);!1===O(u)&&(n?r.push(u):r[o]=u)})),r}(t,(function(t,n){if(-1===e.indexOf(n))return t}))},$=function(t,e){return t&&t.hasOwnProperty(e)},U={export:"ejsPrecompiled",cache:!0,chokidar:null,path:"views",resolver:function(t,e){return Promise.resolve(["resolver is not defined",t,e].join(" "))},extension:"ejs",rmWhitespace:!0,withObject:!0,globalHelpers:[],vars:{SCOPE:"ejs",COMPONENT:"ui",ELEMENT:"el",EXTEND:"$$e",BUFFER:"$$a",LAYOUT:"$$l",BLOCKS:"$$b",MACRO:"$$m",SAFE:"$$v"},token:{start:"<%",end:"%>",regex:"([\\s\\S]+?)"}},q=function(t,e){B(t,{path:w(j,U.path,t.path,e.path),export:w(j,U.export,t.export,e.export),resolver:w(E,U.resolver,t.resolver,e.resolver),extension:w(j,U.extension,t.extension,e.extension),withObject:w(k,U.withObject,t.withObject,e.withObject),rmWhitespace:w(k,U.rmWhitespace,t.rmWhitespace,e.rmWhitespace),cache:w(k,U.cache,t.cache,e.cache),token:B({},U.token,t.token,e.token),vars:B({},U.vars,t.vars,e.vars),globalHelpers:w(b,U.globalHelpers,t.globalHelpers,e.globalHelpers)})},H="undefined"!=typeof globalThis?globalThis:window||self,G=new WeakMap,J=new WeakMap,Y=function(){return h((function t(e){i(this,t),a(this,G,!0),a(this,J,{}),this.configure(e)}),[{key:"load",value:function(t){u(G,this)&&B(u(J,this),t||{})}},{key:"get",value:function(t){if(u(G,this))return u(J,this)[t]}},{key:"set",value:function(t,e){u(G,this)&&(u(J,this)[t]=e)}},{key:"exist",value:function(t){if(u(G,this))return $(u(J,this),t)}},{key:"clear",value:function(){c(J,this,{})}},{key:"remove",value:function(t){delete u(J,this)[t]}},{key:"resolve",value:function(t){return Promise.resolve(this.get(t))}},{key:"configure",value:function(t){c(G,this,t.cache),!1===x&&this.load(H[t.export])}}])}(),D=new WeakMap,I=new WeakMap,K=function(){return h((function t(e){i(this,t),a(this,D,{}),a(this,I,[{symbol:"-",format:function(t){return"')\n".concat(this.BUFFER,"(").concat(this.SAFE,"(").concat(t,",1))\n").concat(this.BUFFER,"('")}},{symbol:"=",format:function(t){return"')\n".concat(this.BUFFER,"(").concat(this.SAFE,"(").concat(t,"))\n").concat(this.BUFFER,"('")}},{symbol:"#",format:function(t){return"')\n/**".concat(t,"**/\n").concat(this.BUFFER,"('")}},{symbol:"",format:function(t){return"')\n".concat(t.trim(),"\n").concat(this.BUFFER,"('")}}]),this.configure(e)}),[{key:"configure",value:function(t){var e=this;u(D,this).withObject=t.withObject,u(D,this).rmWhitespace=t.rmWhitespace,u(D,this).token=t.token,u(D,this).vars=t.vars,u(D,this).globalHelpers=t.globalHelpers,u(D,this).matches=[],u(D,this).formats=[],u(D,this).slurp={match:"[s\t\n]*",start:[u(D,this).token.start,"_"],end:["_",u(D,this).token.end]},u(I,this).forEach((function(t){u(D,e).matches.push(u(D,e).token.start.concat(t.symbol).concat(u(D,e).token.regex).concat(u(D,e).token.end)),u(D,e).formats.push(t.format.bind(u(D,e).vars))})),u(D,this).regex=new RegExp(u(D,this).matches.join("|").concat("|$"),"g"),u(D,this).slurpStart=new RegExp([u(D,this).slurp.match,u(D,this).slurp.start.join("")].join(""),"gm"),u(D,this).slurpEnd=new RegExp([u(D,this).slurp.end.join(""),u(D,this).slurp.match].join(""),"gm")}},{key:"compile",value:function(t,e){var n=this,r=u(D,this).vars,o=r.SCOPE,i=r.SAFE,a=r.BUFFER,c=r.COMPONENT,s=r.ELEMENT,h=u(D,this).globalHelpers;u(D,this).rmWhitespace&&(t=String(t).replace(/[\r\n]+/g,"\n").replace(/^\s+|\s+$/gm,"")),t=String(t).replace(u(D,this).slurpStart,u(D,this).token.start).replace(u(D,this).slurpEnd,u(D,this).token.end);var f,l,p,v="".concat(a,"('");f=u(D,this).regex,l=function(e,r,o){v+=(""+t.slice(r,o)).replace(M,(function(t){return"\\"+P[t]})),e.forEach((function(t,e){t&&(v+=u(D,n).formats[e](t))}))},p=0,t.replace(f,(function(){var t=[].slice.call(arguments,0,-1),e=t.pop(),n=t.shift();return l(t,p,e),p=e+n.length,n})),v="try{".concat(v+="');","}catch(e){return ").concat(a,".error(e)}"),u(D,this).withObject&&(v="with(".concat(o,"){").concat(v,"}")),v="".concat(a,".start();").concat(v,"return ").concat(a,".end();"),v+="\n//# sourceURL=".concat(e);var y=null,d=[o,c,s,a,i].concat(h);try{(y=Function.apply(null,d.concat(v))).source="(function(".concat(d.join(","),"){\n").concat(v,"\n});")}catch(t){throw t.filename=e,t.source=v,t}return y}}])}(),V=new WeakMap,X=new WeakMap,z=new WeakMap,Q=new WeakMap,Z=new WeakSet,tt=function(){return h((function t(e,n,r){i(this,t),s(this,Z),a(this,V,void 0),a(this,X,void 0),a(this,z,void 0),a(this,Q,void 0),_(n,Y),_(r,K),c(X,this,n),c(z,this,r),this.configure(e)}),[{key:"configure",value:function(t){c(V,this,t.path),E(t.resolver)&&c(Q,this,t.resolver)}},{key:"get",value:function(t){var n=this;return u(X,this).exist(t)?u(X,this).resolve(t):e(Z,this,et).call(this,t).then((function(r){return e(Z,n,nt).call(n,t,e(Z,n,rt).call(n,r,t))}))}}])}();function et(t){return u(Q,this).call(this,u(V,this),t)}function nt(t,e){return u(X,this).set(t,e),e}function rt(t,e){return E(t)?t:u(z,this).compile(t,e)}var ot=["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"],it=" ",ut='"',at="/",ct="<",st=">",ht=function(t,e,n){var r=[],o=-1===ot.indexOf(t),i=function(t,e){var n=[];return C(t,(function(t,r,o){var i=e(t,r,o);!1===O(i)&&n.push(i)})),n}(e,(function(t,e){if(null!=t)return[F(e),[ut,F(t),ut].join("")].join("=")})).join(it);return r.push([ct,t,it,i,st].join("")),n&&o&&r.push(n instanceof Array?n.join(""):n),o&&r.push([ct,at,t,st].join("")),r.join("")},ft=function(t){function e(t){var n;return i(this,e),f(n=r(this,e),"code",0),n.message=t,n}return p(e,t),h(e,[{key:"getCode",value:function(){return this.code}},{key:"getMessage",value:function(){return this.message}},{key:"toString",value:function(){return this.getMessage()}}])}(m(Error)),lt=function(t){function e(){var t;i(this,e);for(var n=arguments.length,o=new Array(n),u=0;u<n;u++)o[u]=arguments[u];return f(t=r(this,e,[].concat(o)),"code",404),t}return p(e,t),h(e)}(ft),pt=function(t){function e(){var t;i(this,e);for(var n=arguments.length,o=new Array(n),u=0;u<n;u++)o[u]=arguments[u];return f(t=r(this,e,[].concat(o)),"code",500),t}return p(e,t),h(e)}(ft);function vt(t){return Promise.all(t||[]).then((function(t){return t.join("")})).catch((function(t){return t}))}function yt(){var t=[],e=[],n=function(t){e.push(t)};return n.start=function(){e=[]},n.backup=function(){t.push(e.concat()),e=[]},n.restore=function(){var n=e.concat();return e=t.pop(),vt(n)},n.error=function(t){return e=t,Promise.reject(new pt(e.message));var e},n.end=function(){return vt(e)},n}var dt=Symbol("ContextScope.parentTemplate"),gt=new WeakMap,mt=function(){return h((function t(e,n){i(this,t),a(this,gt,void 0),this.configure(e,n)}),[{key:"create",value:function(t){return new(u(gt,this))(t)}},{key:"configure",value:function(t,e){c(gt,this,function(t,e){var n=t.vars,r=n.BLOCKS,o=n.MACRO,i=n.EXTEND,u=n.LAYOUT,a=n.BUFFER,c=n.SAFE,s=n.SCOPE,h=n.COMPONENT,f=n.ELEMENT;function l(t){this[dt]=null,this[r]={},this[o]={},Object.assign(this,A(t,[s,a,c,h,f]))}return Object.assign(l.prototype,e),Object.defineProperty(l.prototype,a,{value:yt()}),Object.defineProperty(l.prototype,r,{value:{},writable:!0}),Object.defineProperty(l.prototype,o,{value:{},writable:!0}),Object.defineProperty(l.prototype,u,{value:!1,writable:!0}),Object.defineProperty(l.prototype,i,{value:!1,writable:!0}),Object.defineProperty(l.prototype,dt,{value:null,writable:!0}),Object.defineProperties(l.prototype,{setParentTemplate:{value:function(t){return this[dt]=t,this}},getParentTemplate:{value:function(){return this[dt]}},useSafeValue:{get:function(){return W}},useComponent:{get:function(){return E(this[h])?this[h].bind(this):function(){throw new Error("".concat(h," must be a function"))}}},useElement:{get:function(){return E(this[f])?this[f].bind(this):function(){throw new Error("".concat(f," must be a function"))}}},getMacro:{value:function(){return this[o]}},getBuffer:{value:function(){return this[a]}},getBlocks:{value:function(){return this[r]}},setExtend:{value:function(t){return this[i]=t,this}},getExtend:{value:function(){return this[i]}},setLayout:{value:function(t){return this[u]=t,this}},getLayout:{value:function(){return this[u]}},clone:{value:function(t){var e=[u,i,a];return!0===t&&e.push(r),A(this,e)}},extend:{value:function(t){this.setExtend(!0),this.setLayout(t)}},echo:{value:function(t){var e=this.getBuffer();[].slice.call(arguments).forEach(e)}},fn:{value:function(t){var e=this.getBuffer(),n=this;return function(){if(E(t))return e.backup(),e(t.apply(n,arguments)),e.restore()}}},macro:{value:function(t,e){var n=this.getMacro(),r=this.fn(e),o=this;n[t]=function(){return o.echo(r.apply(void 0,arguments))}}},call:{value:function(t){var e=this.getMacro()[t],n=[].slice.call(arguments,1);if(E(e))return e.apply(e,n)}},block:{value:function(t,e){var n=this,r=this.getBlocks();if(r[t]=r[t]||[],r[t].push(this.fn(e)),!this.getExtend()){var o=Object.assign([],r[t]),i=function(){return o.shift()},u=function(){var t=i();return t?function(){n.echo(t(u()))}:R};this.echo(i()(u()))}}},hasBlock:{value:function(t){return this.getBlocks().hasOwnProperty(t)}},include:{value:function(t,e,n){var r=!1===n?{}:this.clone(!0),o=B(r,e||{}),i=this.render(t,o);this.echo(i)}},use:{value:function(t,e){var n=this;this.echo(Promise.resolve(this.require(t)).then((function(t){var r=n.getMacro();C(t,(function(t,n){r[[e,n].join(".")]=t}))})))}},async:{value:function(t,e){this.echo(Promise.resolve(t).then(e))}},get:{value:function(t,e){var n=N(this,t,!0),r=n.shift(),o=n.pop();return $(r,o)?r[o]:e}},set:{value:function(t,e){var n=N(this,t,!1),r=n.shift(),o=n.pop();return this.getParentTemplate()&&$(r,o)?r[o]:r[o]=e}},each:{value:function(t,e){j(t)&&(t=this.get(t,[])),C(t,e)},writable:!0},el:{value:function(t,e,n){n=E(n)?this.fn(n)():n,this.echo(Promise.resolve(n).then((function(n){return ht(t,e,n)})))},writable:!0},ui:{value:function(t){},writable:!0}}),l}(t,e))}},{key:"helpers",value:function(t){B(u(gt,this).prototype,t||{})}}])}(),wt=new WeakMap,bt=new WeakMap,Et=new WeakMap,jt=new WeakMap,kt=new WeakMap,Ot=new WeakMap,xt=new WeakSet,Pt=function(){return h((function t(e){i(this,t),s(this,xt),a(this,wt,{}),a(this,bt,{}),a(this,Et,void 0),a(this,jt,void 0),a(this,kt,void 0),a(this,Ot,void 0),q(u(wt,this),e||{}),c(Et,this,new mt(u(wt,this),u(bt,this))),c(jt,this,new K(u(wt,this))),c(kt,this,new Y(u(wt,this))),c(Ot,this,new tt(u(wt,this),u(kt,this),u(jt,this))),function(t){(arguments.length>1&&void 0!==arguments[1]?arguments[1]:[]).forEach((function(e){e in t&&(t[e]=t[e].bind(t))}))}(this,["configure","create","render","require","context","preload","compile","helpers"]),this.helpers({require:this.require,render:this.render})}),[{key:"configure",value:function(t){return q(u(wt,this),t||{}),u(Et,this).configure(u(wt,this),u(bt,this)),u(jt,this).configure(u(wt,this)),u(kt,this).configure(u(wt,this)),u(Ot,this).configure(u(wt,this)),u(wt,this)}},{key:"filePath",value:function(t){return function(t,e){var n=t.split(".").pop();return n!==e&&(t=[t,e].join(".")),t}(t,u(wt,this).extension)}},{key:"require",value:function(t){var n=this.context({});return e(xt,this,Lt).call(this,this.filePath(t),n).then((function(){return n.getMacro()}))}},{key:"render",value:function(t,n){var r=this.context(n);return e(xt,this,Lt).call(this,this.filePath(t),r).then(this.outputContent(t,r))}},{key:"outputContent",value:function(t,e){var n=this;return function(r){return e.getExtend()?(e.setExtend(!1),n.renderLayout(e.getLayout(),e,t)):r}}},{key:"renderLayout",value:function(t,n,r){var o=this.context(n);return r&&o.setParentTemplate(r),e(xt,this,Lt).call(this,this.filePath(t),o).then(this.outputContent(t,o))}},{key:"helpers",value:function(t){u(Et,this).helpers(B(u(bt,this),t))}},{key:"context",value:function(t){return u(Et,this).create(t)}},{key:"compile",value:function(t,e){return u(jt,this).compile(t,e)}},{key:"preload",value:function(t){return u(kt,this).load(t||{})}},{key:"create",value:function(t){return new this.constructor(t)}}])}();function Lt(t,e){var n=u(wt,this).globalHelpers,r=[e,e.useComponent,e.useElement,e.getBuffer(),e.useSafeValue],o=n.filter((function(t){return E(e[t])})).map((function(t){return e[t].bind(e)}));return u(Ot,this).get(t).then((function(t){return t.apply(e,r.concat(o))}))}var St={},Tt=function(t,e){return(t=URL.parse(t)).protocol=e?"https:":"http:",t.origin},Mt=new Pt({cache:!1,withObject:!1,resolver:function(t,e){return new Promise((function(t,n){E(St[e])?t(St[e]):n(new lt("template ".concat(e," not found")))}))}}),Ft=Mt.render,Wt=Mt.context,_t=Mt.helpers,Nt=Mt.configure;function Bt(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};Object.assign(St,t)}var Rt=Bt;function Ct(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.templates,r=void 0===e?{}:e,o=t.version,i=t.secure,u=void 0===i||i;return Bt(r),function(){var t,e=(t=y().mark((function t(e,n){return y().wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return e.data=Wt({}),e.data.set("version",o),e.data.set("origin",Tt(e.req.url,u)),e.data.set("path",e.req.path),e.data.set("query",e.req.query()),e.ejs=function(t,n){return Ft(t,Object.assign({param:e.req.param()},e.data,n))},e.helpers=function(t){return _t(t)},e.render=function(t,n){return e.html(e.ejs(t,n))},t.next=10,n();case 10:case"end":return t.stop()}}),t)})),function(){var e=this,r=arguments;return new Promise((function(o,i){var u=t.apply(e,r);function a(t){n(u,o,i,a,c,"next",t)}function c(t){n(u,o,i,a,c,"throw",t)}a(void 0)}))});return function(t,n){return e.apply(this,arguments)}}()}var At=Ct;t.TemplateError=ft,t.TemplateNotFound=lt,t.TemplateSyntaxError=pt,t.configure=Nt,t.context=Wt,t.helpers=_t,t.render=Ft,t.setRenderer=At,t.setTemplates=Rt,t.useRenderer=Ct,t.useTemplates=Bt}));
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "EJS Templates",
4
4
  "homepage": "https://github.com/kosatyi/ejs",
5
5
  "type": "module",
6
- "version": "0.0.103",
6
+ "version": "0.0.104",
7
7
  "main": "dist/cjs/index.js",
8
8
  "module": "dist/esm/index.js",
9
9
  "browser": "dist/umd/browser.js",