* @see org.directwebremoting.Converter#convertOutbound(java.lang.Object, org.directwebremoting.OutboundContext)
*/
public OutboundVariable convertOutbound(Object data, OutboundContext outctx) throws ConversionException
{
String escaped = JavascriptUtil.escapeJavaScript(data.toString(), false, false);
return new NonNestedOutboundVariable('\"' + escaped + '\"');
}