Automattic\WooCommerce\Blocks\Domain
Bootstrap::is_built
See if files have been built or not.
Method of the class: Bootstrap{}
No Hooks.
Returns
true|false.
Usage
// protected - for code of main (parent) or child class $result = $this->is_built();
Bootstrap::is_built() Bootstrap::is built code WC 10.7.0
protected function is_built() {
return file_exists(
$this->package->get_path( 'assets/client/blocks/featured-product.js' )
);
}