Automattic\WooCommerce\Vendor\Sabberworm\CSS\Value

CSSString::renderpublicWC 1.0

Method of the class: CSSString{}

No Hooks.

Returns

String.

Usage

$CSSString = new CSSString();
$CSSString->render( $oOutputFormat );
$oOutputFormat(OutputFormat|null) (required)
.

CSSString::render() code WC 10.7.0

public function render($oOutputFormat)
{
    $sString = addslashes($this->sString);
    $sString = str_replace("\n", '\A', $sString);
    return $oOutputFormat->getStringQuotingType() . $sString . $oOutputFormat->getStringQuotingType();
}