pathchain 1.0.28 → 1.0.29
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/index.js +2 -2
- package/maker.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -164,7 +164,7 @@ exports.getSecretObj = (xsecret, xauthor = "") => {
|
|
|
164
164
|
*
|
|
165
165
|
* @return {string} node_buffer
|
|
166
166
|
*/
|
|
167
|
-
exports.makeNode = (
|
|
167
|
+
exports.makeNode = (text ="", xauthor = "", format = 'MM DD YYYY HH:mm:SSS [GMT]Z') => {
|
|
168
168
|
const node_buffer = maker.node(xauthor, text, format);
|
|
169
169
|
return node_buffer;
|
|
170
170
|
}
|
|
@@ -179,4 +179,4 @@ exports.makeNode = (xauthor = "", text ="", format = 'MM DD YYYY HH:mm:SSS [GMT]
|
|
|
179
179
|
exports.getNodeObj = (xnode, xauthor="") => {
|
|
180
180
|
const node_object = getter.getNodeObj(xnode, xauthor);
|
|
181
181
|
return node_object;
|
|
182
|
-
}
|
|
182
|
+
}
|
package/maker.js
CHANGED
|
@@ -216,7 +216,7 @@ function entity(xsecret, format) {
|
|
|
216
216
|
*
|
|
217
217
|
* @return {string} node_hash
|
|
218
218
|
*/
|
|
219
|
-
function node(
|
|
219
|
+
function node(text, author, format = 'MM DD YYYY HH:mm:SSS [GMT]Z') {
|
|
220
220
|
var node_pb = pb(fs.readFileSync('node_modules/pathchain/proto/node.proto'))
|
|
221
221
|
|
|
222
222
|
var author_folder = author;
|