UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

17 lines (16 loc) 329 B
import {BaseMethod} from "./_Base"; export class StrConcatExpression extends BaseMethod { static required_arguments() { return []; } async process_arguments(args) { let value = ""; for (let arg of args) { if (arg == null) { arg = ""; } value += `${arg}`; } return value; } }