mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
538ff9b321
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92614 467b73ca-7a2a-4603-9d3b-597d59a354a9
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); };
|
|
}
|
|
|
|
} |