38.107.191.110 |    

Navigation

Google Advertisement

All snippets of the tag function

1-2 of 2 Entries

create_function
(JavaScript::Snippets)
Created by Marko Schulz at 2010-02-18 17:49:15
/** * Create an anonymous (lambda-style) function. */ function create_function (args, code) { try { // Original by: Johnny Mast (http://www.phpvrouwen.nl) return Function.apply(null, args.split(',').concat(code)); } catch (e) { return false; ...

function_exists
(JavaScript::Snippets)
Created by Marko Schulz at 2010-02-18 17:38:46
/** * Return TRUE if the given function has been defined. */ function function_exists (function_name) { // Original by: Kevin van Zonneveld (http://kevin.vanzonneveld.net) if (typeof function_name == 'string'){ return (typeof this.window[func...

1-2 of 2 Entries
Search
 
Full text search by name and content of a snippet.

User online
There are 4 users online.

Tags Cloud

Latest snippets
urlencode
(Perl::Function)
gethostbyaddr
(Perl::Function)
create_function
(JavaScript::Snippets)
function_exists
(JavaScript::Snippets)
listing
(PHP::Function)
runPhpCode
(PHP::Function)
md5
(Bash::Function)
rtrim
(Bash::Function)
ltrim
(Bash::Function)
function_exists
(Bash::Function)