UNPKG

node-red-contrib-object-hash

Version:

A Node-RED node for generate hashes from objects and values in node.

26 lines (24 loc) 723 B
<script type="text/javascript"> RED.nodes.registerType('object-hash',{ category: 'function', color: '#E9967A', defaults: { name: {value:""} }, inputs:1, outputs:1, icon: "hash.svg", label: function() { return this.name||"object-hash"; } }); </script> <script type="text/x-red" data-template-name="object-hash"> <div class="form-row"> <label for="node-input-name"><i class="icon-tag"></i> Name</label> <input type="text" id="node-input-name" placeholder="Name"> </div> </script> <script type="text/x-red" data-help-name="lower-case"> <p>A node for returning has for an object.</p> </script>