]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - include/javascript/yui3/build/collection/array-invoke.js
Release 6.2.2
[Github/sugarcrm.git] / include / javascript / yui3 / build / collection / array-invoke.js
1 /*
2  Copyright (c) 2010, Yahoo! Inc. All rights reserved.
3  Code licensed under the BSD License:
4  http://developer.yahoo.com/yui/license.html
5  version: 3.3.0
6  build: 3167
7  */
8 YUI.add('array-invoke',function(Y){Y.Array.invoke=function(items,name){var args=Y.Array(arguments,2,true),isFunction=Y.Lang.isFunction,ret=[];Y.Array.each(Y.Array(items),function(item,i){if(isFunction(item[name])){ret[i]=item[name].apply(item,args);}});return ret;};},'3.3.0');