i check it, and i found the source code of the function:
in /wp-admin/load-scripts.php -> line 68:
function is_admin() {return true;}'
in /wp-admin/load-styles.php -> line 68:
<code>function is_admin() {return true;}</code>
and in /wp-includes/load.php -> line 572:
function is_admin() {
if ( defined( ‘WP_ADMIN’ ) )
return WP_ADMIN;
return false;
}`
so!! it look strange to me that the function is UNDEFINED ??