mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02: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); };
|
||
|
}
|
||
|
|
||
|
}
|