@kosatyi/ejs 0.0.98 → 0.0.99

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.
@@ -658,6 +658,7 @@
658
658
  defaults.vars = {
659
659
  SCOPE: 'ejs',
660
660
  COMPONENT: 'ui',
661
+ ELEMENT: 'el',
661
662
  EXTEND: '$$e',
662
663
  BUFFER: '$$a',
663
664
  LAYOUT: '$$l',
@@ -694,7 +695,6 @@
694
695
  _classCallCheck(this, Cache);
695
696
  _classPrivateFieldInitSpec(this, _enabled, true);
696
697
  _classPrivateFieldInitSpec(this, _list, {});
697
- bindContext(this, ['configure']);
698
698
  this.configure(config);
699
699
  }
700
700
  return _createClass(Cache, [{
@@ -776,7 +776,6 @@
776
776
  return "')\n".concat(value.trim(), "\n").concat(this.BUFFER, "('");
777
777
  }
778
778
  }]);
779
- bindContext(this, ['configure', 'compile']);
780
779
  this.configure(config);
781
780
  }
782
781
  return _createClass(Compiler, [{
@@ -811,7 +810,8 @@
811
810
  SCOPE = _classPrivateFieldGet2$1.SCOPE,
812
811
  SAFE = _classPrivateFieldGet2$1.SAFE,
813
812
  BUFFER = _classPrivateFieldGet2$1.BUFFER,
814
- COMPONENT = _classPrivateFieldGet2$1.COMPONENT;
813
+ COMPONENT = _classPrivateFieldGet2$1.COMPONENT,
814
+ ELEMENT = _classPrivateFieldGet2$1.ELEMENT;
815
815
  var GLOBALS = _classPrivateFieldGet2(_config$1, this).globalHelpers;
816
816
  if (_classPrivateFieldGet2(_config$1, this).rmWhitespace) {
817
817
  content = String(content).replace(/[\r\n]+/g, '\n').replace(/^\s+|\s+$/gm, '');
@@ -834,7 +834,7 @@
834
834
  source = "".concat(BUFFER, ".start();").concat(source, "return ").concat(BUFFER, ".end();");
835
835
  source += "\n//# sourceURL=".concat(path);
836
836
  var result = null;
837
- var params = [SCOPE, COMPONENT, BUFFER, SAFE].concat(GLOBALS);
837
+ var params = [SCOPE, BUFFER, SAFE, COMPONENT, ELEMENT].concat(GLOBALS);
838
838
  try {
839
839
  result = Function.apply(null, params.concat(source));
840
840
  result.source = "(function(".concat(params.join(','), "){\n").concat(source, "\n});");
@@ -865,7 +865,6 @@
865
865
  assertInstanceOf(compiler, Compiler);
866
866
  _classPrivateFieldSet2(_cache$1, this, cache);
867
867
  _classPrivateFieldSet2(_compiler$1, this, compiler);
868
- bindContext(this, ['configure', 'get']);
869
868
  this.configure(config);
870
869
  }
871
870
  return _createClass(Template, [{
@@ -1027,7 +1026,7 @@
1027
1026
  return buffer;
1028
1027
  }
1029
1028
 
1030
- var createScope = function createScope(config, methods) {
1029
+ var createContextScope = function createContextScope(config, methods) {
1031
1030
  var _Object$definePropert;
1032
1031
  var _config$vars = config.vars,
1033
1032
  BLOCKS = _config$vars.BLOCKS,
@@ -1035,9 +1034,10 @@
1035
1034
  EXTEND = _config$vars.EXTEND,
1036
1035
  LAYOUT = _config$vars.LAYOUT,
1037
1036
  BUFFER = _config$vars.BUFFER,
1038
- COMPONENT = _config$vars.COMPONENT,
1039
1037
  SAFE = _config$vars.SAFE,
1040
- SCOPE = _config$vars.SCOPE;
1038
+ SCOPE = _config$vars.SCOPE,
1039
+ COMPONENT = _config$vars.COMPONENT,
1040
+ ELEMENT = _config$vars.ELEMENT;
1041
1041
  /**
1042
1042
  * @name ContextScope
1043
1043
  * @param data
@@ -1046,7 +1046,7 @@
1046
1046
  function ContextScope(data) {
1047
1047
  this[BLOCKS] = {};
1048
1048
  this[MACRO] = {};
1049
- Object.assign(this, omit(data, [SCOPE, BUFFER, SAFE, COMPONENT]));
1049
+ Object.assign(this, omit(data, [SCOPE, BUFFER, SAFE, COMPONENT, ELEMENT]));
1050
1050
  }
1051
1051
  Object.assign(ContextScope.prototype, methods);
1052
1052
  Object.defineProperties(ContextScope.prototype, (_Object$definePropert = {}, _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_Object$definePropert, BUFFER, {
@@ -1063,6 +1063,30 @@
1063
1063
  }), EXTEND, {
1064
1064
  value: false,
1065
1065
  writable: true
1066
+ }), "useSafeValue", {
1067
+ get: function get() {
1068
+ return safeValue;
1069
+ }
1070
+ }), "useComponent", {
1071
+ get: function get() {
1072
+ if (isFunction(this[COMPONENT])) {
1073
+ return this[COMPONENT].bind(this);
1074
+ } else {
1075
+ return function () {
1076
+ throw new Error("".concat(COMPONENT, " must be a function"));
1077
+ };
1078
+ }
1079
+ }
1080
+ }), "useElement", {
1081
+ get: function get() {
1082
+ if (isFunction(this[ELEMENT])) {
1083
+ return this[ELEMENT].bind(this);
1084
+ } else {
1085
+ return function () {
1086
+ throw new Error("".concat(ELEMENT, " must be a function"));
1087
+ };
1088
+ }
1089
+ }
1066
1090
  }), "getMacro", {
1067
1091
  value: function value() {
1068
1092
  return this[MACRO];
@@ -1071,19 +1095,7 @@
1071
1095
  value: function value() {
1072
1096
  return this[BUFFER];
1073
1097
  }
1074
- }), "getComponent", {
1075
- value: function value() {
1076
- var context = this;
1077
- if (COMPONENT in context) {
1078
- return function () {
1079
- return context[COMPONENT].apply(context, arguments);
1080
- };
1081
- }
1082
- return function () {
1083
- console.log('%s function not defined', COMPONENT);
1084
- };
1085
- }
1086
- }), "getBlocks", {
1098
+ }), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_Object$definePropert, "getBlocks", {
1087
1099
  value: function value() {
1088
1100
  return this[BLOCKS];
1089
1101
  }
@@ -1091,7 +1103,7 @@
1091
1103
  value: function value(_value) {
1092
1104
  this[EXTEND] = _value;
1093
1105
  }
1094
- }), _defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_defineProperty(_Object$definePropert, "getExtend", {
1106
+ }), "getExtend", {
1095
1107
  value: function value() {
1096
1108
  return this[EXTEND];
1097
1109
  }
@@ -1127,30 +1139,13 @@
1127
1139
  var buffer = this.getBuffer();
1128
1140
  var context = this;
1129
1141
  return function () {
1130
- buffer.backup();
1131
1142
  if (isFunction(callback)) {
1132
- callback.apply(context, arguments);
1143
+ buffer.backup();
1144
+ buffer(callback.apply(context, arguments));
1145
+ return buffer.restore();
1133
1146
  }
1134
- return buffer.restore();
1135
1147
  };
1136
1148
  }
1137
- }), "get", {
1138
- value: function value(name, defaults) {
1139
- var path = getPath(this, name, true);
1140
- var result = path.shift();
1141
- var prop = path.pop();
1142
- return hasProp(result, prop) ? result[prop] : defaults;
1143
- }
1144
- }), "set", {
1145
- value: function value(name, _value2) {
1146
- var path = getPath(this, name, false);
1147
- var result = path.shift();
1148
- var prop = path.pop();
1149
- if (this.getExtend() && hasProp(result, prop)) {
1150
- return result[prop];
1151
- }
1152
- return result[prop] = _value2;
1153
- }
1154
1149
  }), "macro", {
1155
1150
  value: function value(name, callback) {
1156
1151
  var list = this.getMacro();
@@ -1203,14 +1198,11 @@
1203
1198
  var promise = this.render(path, params);
1204
1199
  this.echo(promise);
1205
1200
  }
1206
- }), "promiseResolve", {
1207
- value: function value(_value3, callback) {
1208
- return Promise.resolve(isFunction(_value3) ? this.fn(_value3)() : _value3).then(callback.bind(this));
1209
- }
1210
1201
  }), "use", {
1211
1202
  value: function value(path, namespace) {
1212
- this.echo(this.promiseResolve(this.require(path), function (exports) {
1213
- var list = this.getMacro();
1203
+ var _this2 = this;
1204
+ this.echo(Promise.resolve(this.require(path)).then(function (exports) {
1205
+ var list = _this2.getMacro();
1214
1206
  each(exports, function (macro, name) {
1215
1207
  list[[namespace, name].join('.')] = macro;
1216
1208
  });
@@ -1218,9 +1210,24 @@
1218
1210
  }
1219
1211
  }), "async", {
1220
1212
  value: function value(promise, callback) {
1221
- this.echo(this.promiseResolve(promise, function (data) {
1222
- return this.fn(callback)(data);
1223
- }));
1213
+ this.echo(Promise.resolve(promise).then(callback));
1214
+ }
1215
+ }), "get", {
1216
+ value: function value(name, defaults) {
1217
+ var path = getPath(this, name, true);
1218
+ var result = path.shift();
1219
+ var prop = path.pop();
1220
+ return hasProp(result, prop) ? result[prop] : defaults;
1221
+ }
1222
+ }), "set", {
1223
+ value: function value(name, _value2) {
1224
+ var path = getPath(this, name, false);
1225
+ var result = path.shift();
1226
+ var prop = path.pop();
1227
+ if (this.getExtend() && hasProp(result, prop)) {
1228
+ return result[prop];
1229
+ }
1230
+ return result[prop] = _value2;
1224
1231
  }
1225
1232
  }), "each", {
1226
1233
  value: function value(object, callback) {
@@ -1228,17 +1235,19 @@
1228
1235
  object = this.get(object, []);
1229
1236
  }
1230
1237
  each(object, callback);
1231
- }
1232
- }), "element", {
1233
- value: function value(tag, attr, content) {
1234
- return element(tag, attr, content);
1235
- }
1238
+ },
1239
+ writable: true
1236
1240
  }), "el", {
1237
1241
  value: function value(tag, attr, content) {
1238
- this.echo(this.promiseResolve(content, function (content) {
1239
- return this.element(tag, attr, content);
1242
+ content = isFunction(content) ? this.fn(content)() : content;
1243
+ this.echo(Promise.resolve(content).then(function (content) {
1244
+ return element(tag, attr, content);
1240
1245
  }));
1241
- }
1246
+ },
1247
+ writable: true
1248
+ }), _defineProperty(_Object$definePropert, "ui", {
1249
+ value: function value(layout) {},
1250
+ writable: true
1242
1251
  })));
1243
1252
  return ContextScope;
1244
1253
  };
@@ -1247,7 +1256,6 @@
1247
1256
  function Context(config, methods) {
1248
1257
  _classCallCheck(this, Context);
1249
1258
  _classPrivateFieldInitSpec(this, _scope, void 0);
1250
- bindContext(this, ['create', 'helpers', 'configure']);
1251
1259
  this.configure(config, methods);
1252
1260
  }
1253
1261
  return _createClass(Context, [{
@@ -1258,7 +1266,7 @@
1258
1266
  }, {
1259
1267
  key: "configure",
1260
1268
  value: function configure(config, methods) {
1261
- _classPrivateFieldSet2(_scope, this, createScope(config, methods));
1269
+ _classPrivateFieldSet2(_scope, this, createContextScope(config, methods));
1262
1270
  }
1263
1271
  }, {
1264
1272
  key: "helpers",
@@ -1291,10 +1299,10 @@
1291
1299
  _classPrivateFieldSet2(_cache, this, new Cache(_classPrivateFieldGet2(_config, this)));
1292
1300
  _classPrivateFieldSet2(_template, this, new Template(_classPrivateFieldGet2(_config, this), _classPrivateFieldGet2(_cache, this), _classPrivateFieldGet2(_compiler, this)));
1293
1301
  //
1294
- bindContext(this, ['configure', 'create', 'render', 'context', 'preload', 'compile', 'helpers']);
1302
+ bindContext(this, ['configure', 'create', 'render', 'require', 'context', 'preload', 'compile', 'helpers']);
1295
1303
  //
1296
1304
  this.helpers({
1297
- require: _assertClassBrand(_EJS_brand, this, _require),
1305
+ require: this.require,
1298
1306
  render: this.render
1299
1307
  });
1300
1308
  }
@@ -1349,163 +1357,21 @@
1349
1357
  value: function create(options) {
1350
1358
  return new this.constructor(options);
1351
1359
  }
1360
+ }, {
1361
+ key: "require",
1362
+ value: function require(name) {
1363
+ var filepath = ext(name, _classPrivateFieldGet2(_config, this).extension);
1364
+ var scope = this.context({});
1365
+ return _assertClassBrand(_EJS_brand, this, _output).call(this, filepath, scope).then(function () {
1366
+ return scope.getMacro();
1367
+ });
1368
+ }
1352
1369
  }]);
1353
1370
  }();
1354
-
1355
- // export function EJS2(options) {
1356
- // const self = {
1357
- // config: {},
1358
- // helpers: {},
1359
- // /**
1360
- // * @type {Context}
1361
- // */
1362
- // context: null,
1363
- // /**
1364
- // * @type {Compiler}
1365
- // */
1366
- // compiler: null,
1367
- // /**
1368
- // * @type {Template}
1369
- // */
1370
- // template: null,
1371
- // /**
1372
- // * @type {Cache}
1373
- // */
1374
- // cache: null,
1375
- // }
1376
- // /**
1377
- // *
1378
- // */
1379
- // configSchema(self.config, options || {})
1380
- // self.context = useContext(self.config, self.helpers)
1381
- // self.compiler = useCompiler(self.config)
1382
- // self.cache = useCache(self.config)
1383
- // self.template = useTemplate(self.config, self.cache, self.compiler)
1384
- // /**
1385
- // *
1386
- // * @param {string} path
1387
- // * @param {ContextScope} scope
1388
- // * @return {Promise<string>}
1389
- // */
1390
- // const output = (path, scope) => {
1391
- // const { globalHelpers } = self.config
1392
- // const params = [
1393
- // scope,
1394
- // scope.getComponent(),
1395
- // scope.getBuffer(),
1396
- // safeValue,
1397
- // ].concat(
1398
- // globalHelpers
1399
- // .filter((name) => isFunction(scope[name]))
1400
- // .map((name) => scope[name].bind(scope))
1401
- // )
1402
- // return self.template
1403
- // .get(path)
1404
- // .then((callback) => callback.apply(scope, params))
1405
- // }
1406
- // /**
1407
- // *
1408
- // * @param name
1409
- // * @return {Promise<string>}
1410
- // */
1411
- // const require = (name) => {
1412
- // const filepath = ext(name, self.config.extension)
1413
- // const scope = context({})
1414
- // return output(filepath, scope).then(() => scope.getMacro())
1415
- // }
1416
- // /**
1417
- // *
1418
- // * @param {string} name
1419
- // * @param {{}} [data]
1420
- // * @return {Promise<string>}
1421
- // */
1422
- // const render = (name, data) => {
1423
- // const filepath = ext(name, self.config.extension)
1424
- // const scope = context(data)
1425
- // return output(filepath, scope).then((content) => {
1426
- // if (scope.getExtend()) {
1427
- // scope.setExtend(false)
1428
- // const layout = scope.getLayout()
1429
- // const data = scope.clone()
1430
- // return render(layout, data)
1431
- // }
1432
- // return content
1433
- // })
1434
- // }
1435
- // /**
1436
- // *
1437
- // * @param options
1438
- // * @return {{}}
1439
- // */
1440
- // const configure = (options = {}) => {
1441
- // configSchema(self.config, options || {})
1442
- // self.context.configure(self.config, self.helpers)
1443
- // self.compiler.configure(self.config)
1444
- // self.cache.configure(self.config)
1445
- // self.template.configure(self.config)
1446
- // return self.config
1447
- // }
1448
- // /**
1449
- // *
1450
- // * @param methods
1451
- // */
1452
- // const helpers = (methods) => {
1453
- // self.context.helpers(extend(self.helpers, methods))
1454
- // }
1455
- // /**
1456
- // *
1457
- // * @param list
1458
- // * @return {*}
1459
- // */
1460
- // const preload = (list) => {
1461
- // return self.cache.load(list || {})
1462
- // }
1463
- // /**
1464
- // *
1465
- // * @param options
1466
- // * @return {any}
1467
- // */
1468
- // const create = (options) => {
1469
- // return EJS(options)
1470
- // }
1471
- // /**
1472
- // *
1473
- // * @param content
1474
- // * @param path
1475
- // * @return {Function}
1476
- // */
1477
- // const compile = (content, path) => {
1478
- // return self.compiler.compile(content, path)
1479
- // }
1480
- // /**
1481
- // *
1482
- // * @param data
1483
- // * @return {ContextScope}
1484
- // */
1485
- // const context = (data = {}) => {
1486
- // return self.context.create(data)
1487
- // }
1488
- // /**
1489
- // *
1490
- // */
1491
- // helpers({ require, render })
1492
- // /**
1493
- // *
1494
- // */
1495
- // return {
1496
- // configure,
1497
- // helpers,
1498
- // preload,
1499
- // context,
1500
- // compile,
1501
- // create,
1502
- // render,
1503
- // }
1504
- // }
1505
1371
  function _output(path, scope) {
1506
1372
  var _classPrivateFieldGet2$1 = _classPrivateFieldGet2(_config, this),
1507
1373
  globalHelpers = _classPrivateFieldGet2$1.globalHelpers;
1508
- var params = [scope, scope.getComponent(), scope.getBuffer(), safeValue].concat(globalHelpers.filter(function (name) {
1374
+ var params = [scope, scope.getBuffer(), scope.useSafeValue, scope.useComponent, scope.useElement].concat(globalHelpers.filter(function (name) {
1509
1375
  return isFunction(scope[name]);
1510
1376
  }).map(function (name) {
1511
1377
  return scope[name].bind(scope);
@@ -1514,13 +1380,6 @@
1514
1380
  return callback.apply(scope, params);
1515
1381
  });
1516
1382
  }
1517
- function _require(name) {
1518
- var filepath = ext(name, _classPrivateFieldGet2(_config, this).extension);
1519
- var scope = this.context({});
1520
- return _assertClassBrand(_EJS_brand, this, _output).call(this, filepath, scope).then(function () {
1521
- return scope.getMacro();
1522
- });
1523
- }
1524
1383
 
1525
1384
  var templates = {};
1526
1385
  var getOrigin = function getOrigin(url, secure) {
@@ -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,c){try{var u=t[i](c),a=u.value}catch(t){return void n(t)}u.done?e(a):Promise.resolve(a).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 c(t,n){return t.get(e(t,n))}function u(t,e,n){o(t,e),e.set(t,n)}function a(t,n,r){return t.set(e(t,n),r),r}function s(t,e){o(t,e),e.add(t)}function f(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,d(r.key),r)}}(t.prototype,e),Object.defineProperty(t,"prototype",{writable:!1}),t}function h(t,e,n){return(e=d(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&&g(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:{},c=i.iterator||"@@iterator",u=i.asyncIterator||"@@asyncIterator",a=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 f(t,e,n,r){var i=e&&e.prototype instanceof m?e:m,c=Object.create(i.prototype),u=new T(r||[]);return o(c,"_invoke",{value:L(t,n,u)}),c}function h(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;var l="suspendedStart",p="suspendedYield",v="executing",g="completed",d={};function m(){}function w(){}function b(){}var k={};s(k,c,(function(){return this}));var j=Object.getPrototypeOf,E=j&&j(j(R([])));E&&E!==n&&r.call(E,c)&&(k=E);var O=b.prototype=m.prototype=Object.create(k);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,c,u){var a=h(t[o],t,i);if("throw"!==a.type){var s=a.arg,f=s.value;return f&&"object"==typeof f&&r.call(f,"__await")?e.resolve(f.__await).then((function(t){n("next",t,c,u)}),(function(t){n("throw",t,c,u)})):e.resolve(f).then((function(t){s.value=t,c(s)}),(function(t){return n("throw",t,c,u)}))}u(a.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,c){if(o===v)throw Error("Generator is already running");if(o===g){if("throw"===i)throw c;return{value:t,done:!0}}for(r.method=i,r.arg=c;;){var u=r.delegate;if(u){var a=S(u,r);if(a){if(a===d)continue;return a}}if("next"===r.method)r.sent=r._sent=r.arg;else if("throw"===r.method){if(o===l)throw o=g,r.arg;r.dispatchException(r.arg)}else"return"===r.method&&r.abrupt("return",r.arg);o=v;var s=h(e,n,r);if("normal"===s.type){if(o=r.done?g:p,s.arg===d)continue;return{value:s.arg,done:r.done}}"throw"===s.type&&(o=g,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")),d;var i=h(o,e.iterator,n.arg);if("throw"===i.type)return n.method="throw",n.arg=i.arg,n.delegate=null,d;var c=i.arg;return c?c.done?(n[e.resultName]=c.value,n.next=e.nextLoc,"return"!==n.method&&(n.method="next",n.arg=t),n.delegate=null,d):c:(n.method="throw",n.arg=new TypeError("iterator result is not an object"),n.delegate=null,d)}function F(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 T(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(F,this),this.reset(!0)}function R(e){if(e||""===e){var n=e[c];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,a,"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,a,"GeneratorFunction")),t.prototype=Object.create(O),t},e.awrap=function(t){return{__await:t}},x(P.prototype),s(P.prototype,u,(function(){return this})),e.AsyncIterator=P,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var c=new P(f(t,n,r,o),i);return e.isGeneratorFunction(n)?c:c.next().then((function(t){return t.done?t.value:c.next()}))},x(O),s(O,a,"Generator"),s(O,c,(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=R,T.prototype={constructor:T,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 u.type="throw",u.arg=e,n.next=r,o&&(n.method="next",n.arg=t),!!o}for(var i=this.tryEntries.length-1;i>=0;--i){var c=this.tryEntries[i],u=c.completion;if("root"===c.tryLoc)return o("end");if(c.tryLoc<=this.prev){var a=r.call(c,"catchLoc"),s=r.call(c,"finallyLoc");if(a&&s){if(this.prev<c.catchLoc)return o(c.catchLoc,!0);if(this.prev<c.finallyLoc)return o(c.finallyLoc)}else if(a){if(this.prev<c.catchLoc)return o(c.catchLoc,!0)}else{if(!s)throw Error("try statement without catch or finally");if(this.prev<c.finallyLoc)return o(c.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 c=i?i.completion:{};return c.type=t,c.arg=e,i?(this.method="next",this.next=i.finallyLoc,d):this.complete(c)},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),d},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),d}},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:R(e),resultName:n,nextLoc:r},"next"===this.method&&(this.arg=t),d}},e}function g(t,e){return g=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},g(t,e)}function d(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&&g(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}}),g(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)},k=function(t){return"function"==typeof t},j=function(t){return"string"==typeof t},E=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")},F=S(L),M=S(P),T=function(){return(""+(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"")).replace(F,(function(t){return L[t]}))},R=function(t,e){var n=t;return null==n?"":!0===Boolean(e)?T(n):n},W=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))},_=function(t,e,n){for(var r=t,o=String(e).split("."),i=o.pop(),c=0;c<o.length;c++){var u=o[c];if(k(r.toJSON)&&(r=r.toJSON()),n&&!1===r.hasOwnProperty(u)){r={};break}r=r[u]=r[u]||{}}return k(r.toJSON)&&(r=r.toJSON()),[r,i]},B=function(t){(arguments.length>1&&void 0!==arguments[1]?arguments[1]:[]).forEach((function(e){e in t&&(t[e]=t[e].bind(t))}))},N=function(t,e){var n=t.split(".").pop();return n!==e&&(t=[t,e].join(".")),t},A=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)},C=function(){},$=function(t,e){var n;for(n in t)q(t,n)&&e(t[n],n,t)},U=function(t,e){return function(t,e){var n=t instanceof Array,r=n?[]:{};return $(t,(function(t,o,i){var c=e(t,o,i);!1===O(c)&&(n?r.push(c):r[o]=c)})),r}(t,(function(t,n){if(-1===e.indexOf(n))return t}))},q=function(t,e){return t&&t.hasOwnProperty(e)},H={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",EXTEND:"$$e",BUFFER:"$$a",LAYOUT:"$$l",BLOCKS:"$$b",MACRO:"$$m",SAFE:"$$v"},token:{start:"<%",end:"%>",regex:"([\\s\\S]+?)"}},G=function(t,e){A(t,{path:w(j,H.path,t.path,e.path),export:w(j,H.export,t.export,e.export),resolver:w(k,H.resolver,t.resolver,e.resolver),extension:w(j,H.extension,t.extension,e.extension),withObject:w(E,H.withObject,t.withObject,e.withObject),rmWhitespace:w(E,H.rmWhitespace,t.rmWhitespace,e.rmWhitespace),cache:w(E,H.cache,t.cache,e.cache),token:A({},H.token,t.token,e.token),vars:A({},H.vars,t.vars,e.vars),globalHelpers:w(b,H.globalHelpers,t.globalHelpers,e.globalHelpers)})},J="undefined"!=typeof globalThis?globalThis:window||self,Y=new WeakMap,D=new WeakMap,I=function(){return f((function t(e){i(this,t),u(this,Y,!0),u(this,D,{}),B(this,["configure"]),this.configure(e)}),[{key:"load",value:function(t){c(Y,this)&&A(c(D,this),t||{})}},{key:"get",value:function(t){if(c(Y,this))return c(D,this)[t]}},{key:"set",value:function(t,e){c(Y,this)&&(c(D,this)[t]=e)}},{key:"exist",value:function(t){return q(c(D,this),t)}},{key:"clear",value:function(){a(D,this,{})}},{key:"remove",value:function(t){delete c(D,this)[t]}},{key:"resolve",value:function(t){return Promise.resolve(this.get(t))}},{key:"configure",value:function(t){a(Y,this,t.cache),!1===x&&this.load(J[t.export])}}])}(),K=new WeakMap,X=new WeakMap,z=function(){return f((function t(e){i(this,t),u(this,K,{}),u(this,X,[{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,"('")}}]),B(this,["configure","compile"]),this.configure(e)}),[{key:"configure",value:function(t){var e=this;c(K,this).withObject=t.withObject,c(K,this).rmWhitespace=t.rmWhitespace,c(K,this).token=t.token,c(K,this).vars=t.vars,c(K,this).globalHelpers=t.globalHelpers,c(K,this).matches=[],c(K,this).formats=[],c(K,this).slurp={match:"[s\t\n]*",start:[c(K,this).token.start,"_"],end:["_",c(K,this).token.end]},c(X,this).forEach((function(t){c(K,e).matches.push(c(K,e).token.start.concat(t.symbol).concat(c(K,e).token.regex).concat(c(K,e).token.end)),c(K,e).formats.push(t.format.bind(c(K,e).vars))})),c(K,this).regex=new RegExp(c(K,this).matches.join("|").concat("|$"),"g"),c(K,this).slurpStart=new RegExp([c(K,this).slurp.match,c(K,this).slurp.start.join("")].join(""),"gm"),c(K,this).slurpEnd=new RegExp([c(K,this).slurp.end.join(""),c(K,this).slurp.match].join(""),"gm")}},{key:"compile",value:function(t,e){var n=this,r=c(K,this).vars,o=r.SCOPE,i=r.SAFE,u=r.BUFFER,a=r.COMPONENT,s=c(K,this).globalHelpers;c(K,this).rmWhitespace&&(t=String(t).replace(/[\r\n]+/g,"\n").replace(/^\s+|\s+$/gm,"")),t=String(t).replace(c(K,this).slurpStart,c(K,this).token.start).replace(c(K,this).slurpEnd,c(K,this).token.end);var f,h,l,p="".concat(u,"('");f=c(K,this).regex,h=function(e,r,o){p+=(""+t.slice(r,o)).replace(M,(function(t){return"\\"+P[t]})),e.forEach((function(t,e){t&&(p+=c(K,n).formats[e](t))}))},l=0,t.replace(f,(function(){var t=[].slice.call(arguments,0,-1),e=t.pop(),n=t.shift();return h(t,l,e),l=e+n.length,n})),p="try{".concat(p+="');","}catch(e){return ").concat(u,".error(e)}"),c(K,this).withObject&&(p="with(".concat(o,"){").concat(p,"}")),p="".concat(u,".start();").concat(p,"return ").concat(u,".end();"),p+="\n//# sourceURL=".concat(e);var v=null,y=[o,a,u,i].concat(s);try{(v=Function.apply(null,y.concat(p))).source="(function(".concat(y.join(","),"){\n").concat(p,"\n});")}catch(t){throw t.filename=e,t.source=p,t}return v}}])}(),Q=new WeakMap,V=new WeakMap,Z=new WeakMap,tt=new WeakMap,et=new WeakSet,nt=function(){return f((function t(e,n,r){i(this,t),s(this,et),u(this,Q,void 0),u(this,V,void 0),u(this,Z,void 0),u(this,tt,void 0),W(n,I),W(r,z),a(V,this,n),a(Z,this,r),B(this,["configure","get"]),this.configure(e)}),[{key:"configure",value:function(t){a(Q,this,t.path),k(t.resolver)&&a(tt,this,t.resolver)}},{key:"get",value:function(t){var n=this;return c(V,this).exist(t)?c(V,this).resolve(t):e(et,this,rt).call(this,t).then((function(r){return e(et,n,ot).call(n,t,e(et,n,it).call(n,r,t))}))}}])}();function rt(t){return c(tt,this).call(this,c(Q,this),t)}function ot(t,e){return c(V,this).set(t,e),e}function it(t,e){return k(t)?t:c(Z,this).compile(t,e)}var ct=["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"],ut=" ",at='"',st="/",ft="<",ht=">",lt=function(t,e,n){var r=[],o=-1===ct.indexOf(t),i=function(t,e){var n=[];return $(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[T(e),[at,T(t),at].join("")].join("=")})).join(ut);return r.push([ft,t,ut,i,ht].join("")),n&&o&&r.push(n instanceof Array?n.join(""):n),o&&r.push([ft,st,t,ht].join("")),r.join("")},pt=function(t){function e(t){var n;return i(this,e),h(n=r(this,e),"code",0),n.message=t,n}return p(e,t),f(e,[{key:"getCode",value:function(){return this.code}},{key:"getMessage",value:function(){return this.message}},{key:"toString",value:function(){return this.getMessage()}}])}(m(Error)),vt=function(t){function e(){var t;i(this,e);for(var n=arguments.length,o=new Array(n),c=0;c<n;c++)o[c]=arguments[c];return h(t=r(this,e,[].concat(o)),"code",404),t}return p(e,t),f(e)}(pt),yt=function(t){function e(){var t;i(this,e);for(var n=arguments.length,o=new Array(n),c=0;c<n;c++)o[c]=arguments[c];return h(t=r(this,e,[].concat(o)),"code",500),t}return p(e,t),f(e)}(pt);function gt(t){return Promise.all(t||[]).then((function(t){return t.join("")})).catch((function(t){return t}))}function dt(){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(),gt(n)},n.error=function(t){return e=t,Promise.reject(new yt(e.message));var e},n.end=function(){return gt(e)},n}var mt=new WeakMap,wt=function(){return f((function t(e,n){i(this,t),u(this,mt,void 0),B(this,["create","helpers","configure"]),this.configure(e,n)}),[{key:"create",value:function(t){return new(c(mt,this))(t)}},{key:"configure",value:function(t,e){a(mt,this,function(t,e){var n,r=t.vars,o=r.BLOCKS,i=r.MACRO,c=r.EXTEND,u=r.LAYOUT,a=r.BUFFER,s=r.COMPONENT,f=r.SAFE,l=r.SCOPE;function p(t){this[o]={},this[i]={},Object.assign(this,U(t,[l,a,f,s]))}return Object.assign(p.prototype,e),Object.defineProperties(p.prototype,(h(h(h(h(h(h(h(h(h(h(n={},a,{value:dt()}),o,{value:{},writable:!0}),i,{value:{},writable:!0}),u,{value:!1,writable:!0}),c,{value:!1,writable:!0}),"getMacro",{value:function(){return this[i]}}),"getBuffer",{value:function(){return this[a]}}),"getComponent",{value:function(){var t=this;return s in t?function(){return t[s].apply(t,arguments)}:function(){console.log("%s function not defined",s)}}}),"getBlocks",{value:function(){return this[o]}}),"setExtend",{value:function(t){this[c]=t}}),h(h(h(h(h(h(h(h(h(h(n,"getExtend",{value:function(){return this[c]}}),"setLayout",{value:function(t){this[u]=t}}),"getLayout",{value:function(){return this[u]}}),"clone",{value:function(t){var e=[u,c,a];return!0===t&&e.push(o),U(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(){return e.backup(),k(t)&&t.apply(n,arguments),e.restore()}}}),"get",{value:function(t,e){var n=_(this,t,!0),r=n.shift(),o=n.pop();return q(r,o)?r[o]:e}}),"set",{value:function(t,e){var n=_(this,t,!1),r=n.shift(),o=n.pop();return this.getExtend()&&q(r,o)?r[o]:r[o]=e}}),"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))}}}),h(h(h(h(h(h(h(h(h(h(n,"call",{value:function(t){var e=this.getMacro()[t],n=[].slice.call(arguments,1);if(k(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()},c=function(){var t=i();return t?function(){n.echo(t(c()))}:C};this.echo(i()(c()))}}}),"hasBlock",{value:function(t){return this.getBlocks().hasOwnProperty(t)}}),"include",{value:function(t,e,n){var r=!1===n?{}:this.clone(!0),o=A(r,e||{}),i=this.render(t,o);this.echo(i)}}),"promiseResolve",{value:function(t,e){return Promise.resolve(k(t)?this.fn(t)():t).then(e.bind(this))}}),"use",{value:function(t,e){this.echo(this.promiseResolve(this.require(t),(function(t){var n=this.getMacro();$(t,(function(t,r){n[[e,r].join(".")]=t}))})))}}),"async",{value:function(t,e){this.echo(this.promiseResolve(t,(function(t){return this.fn(e)(t)})))}}),"each",{value:function(t,e){j(t)&&(t=this.get(t,[])),$(t,e)}}),"element",{value:function(t,e,n){return lt(t,e,n)}}),"el",{value:function(t,e,n){this.echo(this.promiseResolve(n,(function(n){return this.element(t,e,n)})))}}))),p}(t,e))}},{key:"helpers",value:function(t){A(c(mt,this).prototype,t||{})}}])}(),bt=new WeakMap,kt=new WeakMap,jt=new WeakMap,Et=new WeakMap,Ot=new WeakMap,xt=new WeakMap,Pt=new WeakSet;function Lt(t,e){var n=c(bt,this).globalHelpers,r=[e,e.getComponent(),e.getBuffer(),R].concat(n.filter((function(t){return k(e[t])})).map((function(t){return e[t].bind(e)})));return c(xt,this).get(t).then((function(t){return t.apply(e,r)}))}function St(t){var n=N(t,c(bt,this).extension),r=this.context({});return e(Pt,this,Lt).call(this,n,r).then((function(){return r.getMacro()}))}var Ft={},Mt=function(t,e){return(t=new URL(t)).protocol=e?"https:":"http:",t.origin},Tt=new(function(){return f((function t(n){i(this,t),s(this,Pt),u(this,bt,{}),u(this,kt,{}),u(this,jt,void 0),u(this,Et,void 0),u(this,Ot,void 0),u(this,xt,void 0),G(c(bt,this),n||{}),a(jt,this,new wt(c(bt,this),c(kt,this))),a(Et,this,new z(c(bt,this))),a(Ot,this,new I(c(bt,this))),a(xt,this,new nt(c(bt,this),c(Ot,this),c(Et,this))),B(this,["configure","create","render","context","preload","compile","helpers"]),this.helpers({require:e(Pt,this,St),render:this.render})}),[{key:"configure",value:function(t){return G(c(bt,this),t||{}),c(jt,this).configure(c(bt,this),c(kt,this)),c(Et,this).configure(c(bt,this)),c(Ot,this).configure(c(bt,this)),c(xt,this).configure(c(bt,this)),c(bt,this)}},{key:"render",value:function(t,n){var r=this,o=N(t,c(bt,this).extension),i=this.context(n);return e(Pt,this,Lt).call(this,o,i).then((function(t){if(i.getExtend()){i.setExtend(!1);var e=i.getLayout(),n=i.clone();return r.render(e,n)}return t}))}},{key:"helpers",value:function(t){c(jt,this).helpers(A(c(kt,this),t))}},{key:"context",value:function(t){return c(jt,this).create(t)}},{key:"compile",value:function(t,e){return c(Et,this).compile(t,e)}},{key:"preload",value:function(t){return c(Ot,this).load(t||{})}},{key:"create",value:function(t){return new this.constructor(t)}}])}())({cache:!1,withObject:!1,resolver:function(t,e){return new Promise((function(t,n){Ft.hasOwnProperty(e)?t(Ft[e]):n(new vt("template ".concat(e," not found")))}))}}),Rt=Tt.render,Wt=Tt.context,_t=Tt.helpers,Bt=Tt.configure,Nt=Tt.create;t.TemplateError=pt,t.TemplateNotFound=vt,t.TemplateSyntaxError=yt,t.configure=Bt,t.context=Wt,t.create=Nt,t.helpers=_t,t.render=Rt,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",Mt(n.req.url,o)),n.data.set("path",n.req.path),n.data.set("query",n.req.query()),n.ejs=function(t,e){return Rt(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 c=t.apply(e,r);function u(t){n(c,o,i,u,a,"next",t)}function a(t){n(c,o,i,u,a,"throw",t)}u(void 0)}))});return function(t,e){return r.apply(this,arguments)}}()},t.setTemplates=function(t){Object.assign(Ft,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 c=t[i](u),a=c.value}catch(t){return void n(t)}c.done?e(a):Promise.resolve(a).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 c(t,e,n){o(t,e),e.set(t,n)}function a(t,n,r){return t.set(e(t,n),r),r}function s(t,e){o(t,e),e.add(t)}function f(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 h(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",c=i.asyncIterator||"@@asyncIterator",a=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 f(t,e,n,r){var i=e&&e.prototype instanceof m?e:m,u=Object.create(i.prototype),c=new F(r||[]);return o(u,"_invoke",{value:P(t,n,c)}),u}function h(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}e.wrap=f;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 k=Object.getPrototypeOf,j=k&&k(k(W([])));j&&j!==n&&r.call(j,u)&&(E=j);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 L(t,e){function n(o,i,u,c){var a=h(t[o],t,i);if("throw"!==a.type){var s=a.arg,f=s.value;return f&&"object"==typeof f&&r.call(f,"__await")?e.resolve(f.__await).then((function(t){n("next",t,u,c)}),(function(t){n("throw",t,u,c)})):e.resolve(f).then((function(t){s.value=t,u(s)}),(function(t){return n("throw",t,u,c)}))}c(a.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 P(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 c=r.delegate;if(c){var a=S(c,r);if(a){if(a===g)continue;return a}}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=h(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=h(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 M(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 T(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function F(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(M,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,a,"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,a,"GeneratorFunction")),t.prototype=Object.create(O),t},e.awrap=function(t){return{__await:t}},x(L.prototype),s(L.prototype,c,(function(){return this})),e.AsyncIterator=L,e.async=function(t,n,r,o,i){void 0===i&&(i=Promise);var u=new L(f(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,a,"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(T),!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 c.type="throw",c.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],c=u.completion;if("root"===u.tryLoc)return o("end");if(u.tryLoc<=this.prev){var a=r.call(u,"catchLoc"),s=r.call(u,"finallyLoc");if(a&&s){if(this.prev<u.catchLoc)return o(u.catchLoc,!0);if(this.prev<u.finallyLoc)return o(u.finallyLoc)}else if(a){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),T(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;T(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},k=function(t){return"string"==typeof t},j=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),L={"'":"'","\\":"\\","\r":"r","\n":"n","\t":"t","\u2028":"u2028","\u2029":"u2029"},P={"&":"&amp;","<":"&lt;",">":"&gt;",'"':"&quot;","'":"&#x27;"},S=function(t){return new RegExp(["[",Object.keys(t).join(""),"]"].join(""),"g")},M=S(P),T=S(L),F=function(){return(""+(arguments.length>0&&void 0!==arguments[0]?arguments[0]:"")).replace(M,(function(t){return P[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 c=o[u];if(E(r.toJSON)&&(r=r.toJSON()),n&&!1===r.hasOwnProperty(c)){r={};break}r=r[c]=r[c]||{}}return E(r.toJSON)&&(r=r.toJSON()),[r,i]},B=function(t,e){var n=t.split(".").pop();return n!==e&&(t=[t,e].join(".")),t},R=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)},A=function(){},C=function(t,e){var n;for(n in t)U(t,n)&&e(t[n],n,t)},$=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}))},U=function(t,e){return t&&t.hasOwnProperty(e)},q={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]+?)"}},H=function(t,e){R(t,{path:w(k,q.path,t.path,e.path),export:w(k,q.export,t.export,e.export),resolver:w(E,q.resolver,t.resolver,e.resolver),extension:w(k,q.extension,t.extension,e.extension),withObject:w(j,q.withObject,t.withObject,e.withObject),rmWhitespace:w(j,q.rmWhitespace,t.rmWhitespace,e.rmWhitespace),cache:w(j,q.cache,t.cache,e.cache),token:R({},q.token,t.token,e.token),vars:R({},q.vars,t.vars,e.vars),globalHelpers:w(b,q.globalHelpers,t.globalHelpers,e.globalHelpers)})},G="undefined"!=typeof globalThis?globalThis:window||self,J=new WeakMap,Y=new WeakMap,D=function(){return f((function t(e){i(this,t),c(this,J,!0),c(this,Y,{}),this.configure(e)}),[{key:"load",value:function(t){u(J,this)&&R(u(Y,this),t||{})}},{key:"get",value:function(t){if(u(J,this))return u(Y,this)[t]}},{key:"set",value:function(t,e){u(J,this)&&(u(Y,this)[t]=e)}},{key:"exist",value:function(t){return U(u(Y,this),t)}},{key:"clear",value:function(){a(Y,this,{})}},{key:"remove",value:function(t){delete u(Y,this)[t]}},{key:"resolve",value:function(t){return Promise.resolve(this.get(t))}},{key:"configure",value:function(t){a(J,this,t.cache),!1===x&&this.load(G[t.export])}}])}(),I=new WeakMap,K=new WeakMap,V=function(){return f((function t(e){i(this,t),c(this,I,{}),c(this,K,[{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(I,this).withObject=t.withObject,u(I,this).rmWhitespace=t.rmWhitespace,u(I,this).token=t.token,u(I,this).vars=t.vars,u(I,this).globalHelpers=t.globalHelpers,u(I,this).matches=[],u(I,this).formats=[],u(I,this).slurp={match:"[s\t\n]*",start:[u(I,this).token.start,"_"],end:["_",u(I,this).token.end]},u(K,this).forEach((function(t){u(I,e).matches.push(u(I,e).token.start.concat(t.symbol).concat(u(I,e).token.regex).concat(u(I,e).token.end)),u(I,e).formats.push(t.format.bind(u(I,e).vars))})),u(I,this).regex=new RegExp(u(I,this).matches.join("|").concat("|$"),"g"),u(I,this).slurpStart=new RegExp([u(I,this).slurp.match,u(I,this).slurp.start.join("")].join(""),"gm"),u(I,this).slurpEnd=new RegExp([u(I,this).slurp.end.join(""),u(I,this).slurp.match].join(""),"gm")}},{key:"compile",value:function(t,e){var n=this,r=u(I,this).vars,o=r.SCOPE,i=r.SAFE,c=r.BUFFER,a=r.COMPONENT,s=r.ELEMENT,f=u(I,this).globalHelpers;u(I,this).rmWhitespace&&(t=String(t).replace(/[\r\n]+/g,"\n").replace(/^\s+|\s+$/gm,"")),t=String(t).replace(u(I,this).slurpStart,u(I,this).token.start).replace(u(I,this).slurpEnd,u(I,this).token.end);var h,l,p,v="".concat(c,"('");h=u(I,this).regex,l=function(e,r,o){v+=(""+t.slice(r,o)).replace(T,(function(t){return"\\"+L[t]})),e.forEach((function(t,e){t&&(v+=u(I,n).formats[e](t))}))},p=0,t.replace(h,(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(c,".error(e)}"),u(I,this).withObject&&(v="with(".concat(o,"){").concat(v,"}")),v="".concat(c,".start();").concat(v,"return ").concat(c,".end();"),v+="\n//# sourceURL=".concat(e);var y=null,d=[o,c,i,a,s].concat(f);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}}])}(),X=new WeakMap,z=new WeakMap,Q=new WeakMap,Z=new WeakMap,tt=new WeakSet,et=function(){return f((function t(e,n,r){i(this,t),s(this,tt),c(this,X,void 0),c(this,z,void 0),c(this,Q,void 0),c(this,Z,void 0),_(n,D),_(r,V),a(z,this,n),a(Q,this,r),this.configure(e)}),[{key:"configure",value:function(t){a(X,this,t.path),E(t.resolver)&&a(Z,this,t.resolver)}},{key:"get",value:function(t){var n=this;return u(z,this).exist(t)?u(z,this).resolve(t):e(tt,this,nt).call(this,t).then((function(r){return e(tt,n,rt).call(n,t,e(tt,n,ot).call(n,r,t))}))}}])}();function nt(t){return u(Z,this).call(this,u(X,this),t)}function rt(t,e){return u(z,this).set(t,e),e}function ot(t,e){return E(t)?t:u(Q,this).compile(t,e)}var it=["area","base","br","col","embed","hr","img","input","link","meta","param","source","track","wbr"],ut=" ",ct='"',at="/",st="<",ft=">",ht=function(t,e,n){var r=[],o=-1===it.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),[ct,F(t),ct].join("")].join("=")})).join(ut);return r.push([st,t,ut,i,ft].join("")),n&&o&&r.push(n instanceof Array?n.join(""):n),o&&r.push([st,at,t,ft].join("")),r.join("")},lt=function(t){function e(t){var n;return i(this,e),h(n=r(this,e),"code",0),n.message=t,n}return p(e,t),f(e,[{key:"getCode",value:function(){return this.code}},{key:"getMessage",value:function(){return this.message}},{key:"toString",value:function(){return this.getMessage()}}])}(m(Error)),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 h(t=r(this,e,[].concat(o)),"code",404),t}return p(e,t),f(e)}(lt),vt=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 h(t=r(this,e,[].concat(o)),"code",500),t}return p(e,t),f(e)}(lt);function yt(t){return Promise.all(t||[]).then((function(t){return t.join("")})).catch((function(t){return t}))}function dt(){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(),yt(n)},n.error=function(t){return e=t,Promise.reject(new vt(e.message));var e},n.end=function(){return yt(e)},n}var gt=new WeakMap,mt=function(){return f((function t(e,n){i(this,t),c(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){a(gt,this,function(t,e){var n,r=t.vars,o=r.BLOCKS,i=r.MACRO,u=r.EXTEND,c=r.LAYOUT,a=r.BUFFER,s=r.SAFE,f=r.SCOPE,l=r.COMPONENT,p=r.ELEMENT;function v(t){this[o]={},this[i]={},Object.assign(this,$(t,[f,a,s,l,p]))}return Object.assign(v.prototype,e),Object.defineProperties(v.prototype,(h(h(h(h(h(h(h(h(h(h(n={},a,{value:dt()}),o,{value:{},writable:!0}),i,{value:{},writable:!0}),c,{value:!1,writable:!0}),u,{value:!1,writable:!0}),"useSafeValue",{get:function(){return W}}),"useComponent",{get:function(){return E(this[l])?this[l].bind(this):function(){throw new Error("".concat(l," must be a function"))}}}),"useElement",{get:function(){return E(this[p])?this[p].bind(this):function(){throw new Error("".concat(p," must be a function"))}}}),"getMacro",{value:function(){return this[i]}}),"getBuffer",{value:function(){return this[a]}}),h(h(h(h(h(h(h(h(h(h(n,"getBlocks",{value:function(){return this[o]}}),"setExtend",{value:function(t){this[u]=t}}),"getExtend",{value:function(){return this[u]}}),"setLayout",{value:function(t){this[c]=t}}),"getLayout",{value:function(){return this[c]}}),"clone",{value:function(t){var e=[c,u,a];return!0===t&&e.push(o),$(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))}}}),h(h(h(h(h(h(h(h(h(h(n,"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()))}:A};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=R(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 U(r,o)?r[o]:e}}),"set",{value:function(t,e){var n=N(this,t,!1),r=n.shift(),o=n.pop();return this.getExtend()&&U(r,o)?r[o]:r[o]=e}}),"each",{value:function(t,e){k(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}),h(n,"ui",{value:function(t){},writable:!0}))),v}(t,e))}},{key:"helpers",value:function(t){R(u(gt,this).prototype,t||{})}}])}(),wt=new WeakMap,bt=new WeakMap,Et=new WeakMap,kt=new WeakMap,jt=new WeakMap,Ot=new WeakMap,xt=new WeakSet,Lt=function(){return f((function t(e){i(this,t),s(this,xt),c(this,wt,{}),c(this,bt,{}),c(this,Et,void 0),c(this,kt,void 0),c(this,jt,void 0),c(this,Ot,void 0),H(u(wt,this),e||{}),a(Et,this,new mt(u(wt,this),u(bt,this))),a(kt,this,new V(u(wt,this))),a(jt,this,new D(u(wt,this))),a(Ot,this,new et(u(wt,this),u(jt,this),u(kt,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 H(u(wt,this),t||{}),u(Et,this).configure(u(wt,this),u(bt,this)),u(kt,this).configure(u(wt,this)),u(jt,this).configure(u(wt,this)),u(Ot,this).configure(u(wt,this)),u(wt,this)}},{key:"render",value:function(t,n){var r=this,o=B(t,u(wt,this).extension),i=this.context(n);return e(xt,this,Pt).call(this,o,i).then((function(t){if(i.getExtend()){i.setExtend(!1);var e=i.getLayout(),n=i.clone();return r.render(e,n)}return t}))}},{key:"helpers",value:function(t){u(Et,this).helpers(R(u(bt,this),t))}},{key:"context",value:function(t){return u(Et,this).create(t)}},{key:"compile",value:function(t,e){return u(kt,this).compile(t,e)}},{key:"preload",value:function(t){return u(jt,this).load(t||{})}},{key:"create",value:function(t){return new this.constructor(t)}},{key:"require",value:function(t){var n=B(t,u(wt,this).extension),r=this.context({});return e(xt,this,Pt).call(this,n,r).then((function(){return r.getMacro()}))}}])}();function Pt(t,e){var n=u(wt,this).globalHelpers,r=[e,e.getBuffer(),e.useSafeValue,e.useComponent,e.useElement].concat(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)}))}var St={},Mt=function(t,e){return(t=new URL(t)).protocol=e?"https:":"http:",t.origin},Tt=new Lt({cache:!1,withObject:!1,resolver:function(t,e){return new Promise((function(t,n){St.hasOwnProperty(e)?t(St[e]):n(new pt("template ".concat(e," not found")))}))}}),Ft=Tt.render,Wt=Tt.context,_t=Tt.helpers,Nt=Tt.configure,Bt=Tt.create;t.TemplateError=lt,t.TemplateNotFound=pt,t.TemplateSyntaxError=vt,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",Mt(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 c(t){n(u,o,i,c,a,"next",t)}function a(t){n(u,o,i,c,a,"throw",t)}c(void 0)}))});return function(t,e){return r.apply(this,arguments)}}()},t.setTemplates=function(t){Object.assign(St,t||{})}}));
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.98",
6
+ "version": "0.0.99",
7
7
  "main": "dist/cjs/index.js",
8
8
  "module": "dist/esm/index.js",
9
9
  "browser": "dist/umd/browser.js",