Function Creation Process
Last updated
Was this helpful?
Was this helpful?
async function(input){
var processed_value = input+1;
return processed_value;
}async function _(input) {
// use await or promise if required
}function hashed_id_sha256(args) {
let params = args.split(':::');
let id = params[0];
let account = params[1];
if (['abc','cdf'].includes(account)) {
return this.tools.getSHA256(id);
}
return id;
}