pathchain 1.0.59 → 1.0.60
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.
- package/maker.js +0 -7
- package/package.json +1 -1
package/maker.js
CHANGED
|
@@ -361,13 +361,6 @@ function link(target, prev, next, author, ancestor, format = 'MM DD YYYY HH:mm:S
|
|
|
361
361
|
|
|
362
362
|
if(target == "") return "The link must link something. Target can't be null.";
|
|
363
363
|
|
|
364
|
-
if(prev == ""){
|
|
365
|
-
if(next == "") return "The link should be connected to something. Prev and Next cannot be both null at the same time.";
|
|
366
|
-
}
|
|
367
|
-
if(next == ""){
|
|
368
|
-
if(prev == "") return "The link should be connected to something. Prev and Next cannot be both null at the same time.";
|
|
369
|
-
}
|
|
370
|
-
|
|
371
364
|
var author_folder = author;
|
|
372
365
|
if(author == ""){
|
|
373
366
|
author = author = pioneer(getter.getCurrentDate(), 'MM DD YYYY HH:mm:SSS [GMT]Z');
|
package/package.json
CHANGED