wpsc_skip_debug_output()WPSCache 1.0

No Hooks.

Returns

null. Nothing (null).

Usage

wpsc_skip_debug_output( $buffer );
$buffer(required)
.

wpsc_skip_debug_output() code WPSCache 3.1.1

function wpsc_skip_debug_output( $buffer ) {
	return strpos( $buffer, '<html' ) === false ||
		( defined( 'REST_REQUEST' ) && REST_REQUEST ) ||
		( defined( 'JSON_REQUEST' ) && JSON_REQUEST ) ||
		( defined( 'WC_API_REQUEST' ) && WC_API_REQUEST ) ||
		( defined( 'XMLRPC_REQUEST' ) && XMLRPC_REQUEST ) ||
		( function_exists( 'wp_doing_ajax' ) && wp_doing_ajax() );
}