UNPKG

@dappnode/dappnodesdk

Version:

dappnodesdk is a tool to make the creation of new dappnode packages as simple as possible. It helps to initialize and publish in ethereum blockchain

11 lines 269 B
/** * Helper to print key value pairs in a custom format * @param obj * @param rowPrint */ export function printObject(obj, rowPrint) { return Object.keys(obj) .map(key => rowPrint(key, obj[key])) .join("\n"); } //# sourceMappingURL=print.js.map