#include "..\script_component.hpp"
/*
 * Author: commy2
 * Removes the brackets around a code and returns the code as a string. It does nothing if the code is already a string.
 *
 * Arguments:
 * 0: Code <CODE, STRING>
 *
 * Return Value:
 * Code <STRING>
 *
 * Example:
 * ["bob"] call ace_common_fnc_codeToString
 *
 * Public: Yes
 */

params ["_code"];

if (_code isEqualType "") exitWith {_code};

toString _code