mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-02 13:22:25 +01:00
Key processing cleanup and bug fixes.
This commit is contained in:
@@ -1315,7 +1315,7 @@ var array = Class("array", Array, {
|
||||
* @param {Array} ary
|
||||
* @returns {Array}
|
||||
*/
|
||||
flatten: function flatten(ary) ary.length ? Array.concat.apply([], ary) : [],
|
||||
flatten: function flatten(ary) ary.length ? Array.prototype.concat.apply([], ary) : [],
|
||||
|
||||
/**
|
||||
* Returns an Iterator for an array's values.
|
||||
|
||||
Reference in New Issue
Block a user