Automattic\WooCommerce\Vendor\Sabberworm\CSS\Value

Value::parseMicrosoftFilterprivate staticWC 1.0

Method of the class: Value{}

No Hooks.

Returns

CSSFunction.

Usage

$result = Value::parseMicrosoftFilter( $oParserState );
$oParserState(ParserState) (required)
.

Value::parseMicrosoftFilter() code WC 10.5.0

private static function parseMicrosoftFilter(ParserState $oParserState)
{
    $sFunction = $oParserState->consumeUntil('(', false, true);
    $aArguments = Value::parseValue($oParserState, [',', '=']);
    return new CSSFunction($sFunction, $aArguments, ',', $oParserState->currentLine());
}