mirror of
https://github.com/silverstripe/silverstripe-reports
synced 2024-10-22 09:05:53 +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); };
|
||
|
}
|
||
|
|
||
|
}
|