X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=node_modules%2Funcss%2Fnode_modules%2Flodash%2Funzip.js;fp=node_modules%2Funcss%2Fnode_modules%2Flodash%2Funzip.js;h=6cd673f42bef15009885438668c8ed54eebd9703;hp=0000000000000000000000000000000000000000;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad diff --git a/node_modules/uncss/node_modules/lodash/unzip.js b/node_modules/uncss/node_modules/lodash/unzip.js new file mode 100644 index 000000000..6cd673f42 --- /dev/null +++ b/node_modules/uncss/node_modules/lodash/unzip.js @@ -0,0 +1,44 @@ +var arrayFilter = require('./internal/arrayFilter'), + arrayMap = require('./internal/arrayMap'), + baseProperty = require('./internal/baseProperty'), + baseTimes = require('./internal/baseTimes'), + isArrayLikeObject = require('./isArrayLikeObject'); + +/* Built-in method references for those with the same name as other `lodash` methods. */ +var nativeMax = Math.max; + +/** + * This method is like `_.zip` except that it accepts an array of grouped + * elements and creates an array regrouping the elements to their pre-zip + * configuration. + * + * @static + * @memberOf _ + * @category Array + * @param {Array} array The array of grouped elements to process. + * @returns {Array} Returns the new array of regrouped elements. + * @example + * + * var zipped = _.zip(['fred', 'barney'], [30, 40], [true, false]); + * // => [['fred', 30, true], ['barney', 40, false]] + * + * _.unzip(zipped); + * // => [['fred', 'barney'], [30, 40], [true, false]] + */ +function unzip(array) { + if (!(array && array.length)) { + return []; + } + var length = 0; + array = arrayFilter(array, function(group) { + if (isArrayLikeObject(group)) { + length = nativeMax(group.length, length); + return true; + } + }); + return baseTimes(length, function(index) { + return arrayMap(array, baseProperty(index)); + }); +} + +module.exports = unzip;