mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
8 lines
163 B
ActionScript
8 lines
163 B
ActionScript
|
class Delegate
|
||
|
{
|
||
|
static function create(obj:Object, func:Function):Function
|
||
|
{
|
||
|
return function() { return func.apply(obj, arguments); };
|
||
|
}
|
||
|
|
||
|
}
|