mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-14 22:43:53 +01:00
7 lines
144 B
Plaintext
7 lines
144 B
Plaintext
|
/// @param string
|
||
|
function scr_cmd_arg(argument0) {
|
||
|
var s = argument0;
|
||
|
if (string_pos(" ", s)) {
|
||
|
return @'"' + s + @'"';
|
||
|
} else return s;
|
||
|
}
|