isite 2022.3.6 → 2022.3.7

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.
@@ -213,8 +213,6 @@ module.exports = function (site) {
213
213
  if (obj.vat_total) {
214
214
  value.push(site.getTLV('5', obj.vat_total));
215
215
  }
216
- console.log(obj);
217
- console.log(value);
218
216
  value = Buffer.concat([...value]).toString('base64');
219
217
  res.json({
220
218
  done: true,
package/lib/words.js CHANGED
@@ -77,7 +77,7 @@ module.exports = function init(____0) {
77
77
  return response;
78
78
  };
79
79
 
80
- words.addList = function (list, db = true) {
80
+ words.addList = function (list, db = false) {
81
81
  if (typeof list === 'string') {
82
82
  ____0.readFile(list, (err, data) => {
83
83
  if (!err) {
@@ -104,7 +104,7 @@ module.exports = function init(____0) {
104
104
  };
105
105
 
106
106
  words.addApp = function (app_path) {
107
- words.addList(app_path + '/site_files/json/words.json');
107
+ words.addList(app_path + '/site_files/json/words.json' , false);
108
108
  };
109
109
 
110
110
  ____0.on(____0.strings[9], () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "isite",
3
- "version": "2022.03.06",
3
+ "version": "2022.03.07",
4
4
  "description": "Create Enterprise Multi-Language Web Site [Fast and Easy] ",
5
5
  "main": "index.js",
6
6
  "repository": {