phamda icon indicating copy to clipboard operation
phamda copied to clipboard

Auto-curried function library for PHP

Results 2 phamda issues
Sort by recently updated
recently updated
newest added

Many functions use the php function "method_exists" to check if a given method is defined in an object being operated on. For example, P::map($val, $fn) checks if $val has the...

Checks could be more strict; is_array could be replaced with is_object & class_exists methods for proper validation