CryptoAssist/src/blocks/concat.js

16 lines
241 B
JavaScript
Raw Normal View History

2017-02-21 21:28:24 +00:00
module.exports = {
name: "Concat",
inputs: {
str1: "String 1",
str2: "String 2"
},
output: true,
execute: function({str1, str2}, block){
return str1 + str2;
},
pageBlock: {
html: "",
js: function(){}
}
}