Automattic\WooCommerce\Internal\Utilities
URL::is_relative
Indicates if the URL or filepath was relative.
Method of the class: URL{}
No Hooks.
Returns
true|false. True if relative, else false.
Usage
$URL = new URL(); $URL->is_relative(): bool;
URL::is_relative() URL::is relative code WC 10.5.0
public function is_relative(): bool {
return ! $this->is_absolute;
}