Skip to content

Commit

Permalink
Merge remote-tracking branch 'yui/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
skotos committed Dec 14, 2011
2 parents deafee6 + 7eac586 commit 4da74e2
Show file tree
Hide file tree
Showing 39 changed files with 4,943 additions and 9 deletions.
22 changes: 22 additions & 0 deletions build/gallery-array-unnest/gallery-array-unnest-debug.js
@@ -0,0 +1,22 @@
YUI.add('gallery-array-unnest', function(Y) {

(function (Y) {
'use strict';

var unnest = function (array, levels) {
var empty = [];

array = empty.concat.apply(empty, array);

if (levels && levels - 1) {
return unnest(array, levels - 1);
}

return array;
};

Y.Array.unnest = unnest;
}(Y));


}, 'gallery-2011.12.14-21-12' ,{requires:['yui'], skinnable:false});
1 change: 1 addition & 0 deletions build/gallery-array-unnest/gallery-array-unnest-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions build/gallery-array-unnest/gallery-array-unnest.js
@@ -0,0 +1,22 @@
YUI.add('gallery-array-unnest', function(Y) {

(function (Y) {
'use strict';

var unnest = function (array, levels) {
var empty = [];

array = empty.concat.apply(empty, array);

if (levels && levels - 1) {
return unnest(array, levels - 1);
}

return array;
};

Y.Array.unnest = unnest;
}(Y));


}, 'gallery-2011.12.14-21-12' ,{requires:['yui'], skinnable:false});

0 comments on commit 4da74e2

Please sign in to comment.