Automattic\WooCommerce\Blocks\Domain

Bootstrap::is_built()protectedWC 1.0

See if files have been built or not.

Method of the class: Bootstrap{}

No Hooks.

Return

true|false.

Usage

// protected - for code of main (parent) or child class
$result = $this->is_built();

Bootstrap::is_built() code WC 8.7.0

protected function is_built() {
	return file_exists(
		$this->package->get_path( 'assets/client/blocks/featured-product.js' )
	);
}