PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/footcrew.com/wp-content/plugins/woocommerce/src/Internal/Traits/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/footcrew.com/wp-content/plugins/woocommerce/src/Internal/Traits/ScriptDebug.php |
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\Internal\Traits; use Automattic\Jetpack\Constants; /** * Trait ScriptDebug * * @since 8.5.0 */ trait ScriptDebug { /** * Get the script suffix based on the SCRIPT_DEBUG constant. * * @return string */ protected function get_script_suffix(): string { return $this->is_script_debug_enabled() ? '' : '.min'; } /** * Check if SCRIPT_DEBUG is enabled. * * @return bool */ protected function is_script_debug_enabled(): bool { return Constants::is_true( 'SCRIPT_DEBUG' ); } }