We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24c6c16 commit 1dd8c54Copy full SHA for 1dd8c54
src/com/adobe/serialization/json/JSONEncoder.as
@@ -92,7 +92,7 @@ package com.adobe.serialization.json
92
// convert boolean to string easily
93
return value ? "true" : "false";
94
}
95
- else if ( value is Array )
+ else if ( value is Array || value is Vector.<*> )
96
{
97
// call the helper method to convert an array
98
return arrayToString( value as Array );
0 commit comments