11 lines
254 B
Plaintext
11 lines
254 B
Plaintext
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.publicKey = publicKey;
|
|
exports.privateKey = privateKey;
|
|
function publicKey(name) {
|
|
return name;
|
|
}
|
|
function privateKey(node) {
|
|
return `#private@@${node.name}`;
|
|
}
|