mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-27 15:36:16 +01:00
7 lines
144 B
Text
7 lines
144 B
Text
|
/// @param string
|
||
|
function scr_cmd_arg(argument0) {
|
||
|
var s = argument0;
|
||
|
if (string_pos(" ", s)) {
|
||
|
return @'"' + s + @'"';
|
||
|
} else return s;
|
||
|
}
|