pathchain 1.0.46 → 1.0.47

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.
Files changed (2) hide show
  1. package/maker.js +7 -7
  2. package/package.json +1 -1
package/maker.js CHANGED
@@ -221,7 +221,7 @@ function node(text, author, format = 'MM DD YYYY HH:mm:SSS [GMT]Z') {
221
221
 
222
222
  var author_folder = author;
223
223
  if(author == ""){
224
- author = pioneer();
224
+ author = author = pioneer(getter.getCurrentDate(), 'MM DD YYYY HH:mm:SSS [GMT]Z');
225
225
  author_folder = "";
226
226
  }else{
227
227
  author_folder = author_folder + '/';
@@ -265,7 +265,7 @@ function nodelink(first, second, author, ancestor, format = 'MM DD YYYY HH:mm:SS
265
265
 
266
266
  var author_folder = author;
267
267
  if(author == ""){
268
- author = pioneer();
268
+ author = author = pioneer(getter.getCurrentDate(), 'MM DD YYYY HH:mm:SSS [GMT]Z');
269
269
  author_folder = "";
270
270
  }else{
271
271
  author_folder = author_folder + '/';
@@ -314,7 +314,7 @@ function path(text, head, author, ancestor, format = 'MM DD YYYY HH:mm:SSS [GMT]
314
314
 
315
315
  var author_folder = author;
316
316
  if(author == ""){
317
- author = pioneer();
317
+ author = author = pioneer(getter.getCurrentDate(), 'MM DD YYYY HH:mm:SSS [GMT]Z');
318
318
  author_folder = "";
319
319
  }else{
320
320
  author_folder = author_folder + '/';
@@ -364,7 +364,7 @@ function pathlink(first, second, author, ancestor, format = 'MM DD YYYY HH:mm:SS
364
364
 
365
365
  var author_folder = author;
366
366
  if(author == ""){
367
- author = pioneer();
367
+ author = author = pioneer(getter.getCurrentDate(), 'MM DD YYYY HH:mm:SSS [GMT]Z');
368
368
  author_folder = "";
369
369
  }else{
370
370
  author_folder = author_folder + '/';
@@ -413,7 +413,7 @@ function tree(text, head, author, ancestor, format = 'MM DD YYYY HH:mm:SSS [GMT]
413
413
 
414
414
  var author_folder = author;
415
415
  if(author == ""){
416
- author = pioneer();
416
+ author = author = pioneer(getter.getCurrentDate(), 'MM DD YYYY HH:mm:SSS [GMT]Z');
417
417
  author_folder = "";
418
418
  }else{
419
419
  author_folder = author_folder + '/';
@@ -463,7 +463,7 @@ function treelink(first, second, author, ancestor, format = 'MM DD YYYY HH:mm:SS
463
463
 
464
464
  var author_folder = author;
465
465
  if(author == ""){
466
- author = pioneer();
466
+ author = author = pioneer(getter.getCurrentDate(), 'MM DD YYYY HH:mm:SSS [GMT]Z');
467
467
  author_folder = "";
468
468
  }else{
469
469
  author_folder = author_folder + '/';
@@ -511,7 +511,7 @@ function label(text, author, ancestor, format = 'MM DD YYYY HH:mm:SSS [GMT]Z') {
511
511
 
512
512
  var author_folder = author;
513
513
  if(author == ""){
514
- author = pioneer();
514
+ author = author = pioneer(getter.getCurrentDate(), 'MM DD YYYY HH:mm:SSS [GMT]Z');
515
515
  author_folder = "";
516
516
  }else{
517
517
  author_folder = author_folder + '/';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pathchain",
3
- "version": "1.0.46",
3
+ "version": "1.0.47",
4
4
  "dependencies": {
5
5
  "date-and-time": "^3.0.2",
6
6
  "empty-dir": "^3.0.0",