Rebuild dist & docs. [ci skip]

This commit is contained in:
John-David Dalton
2014-01-25 11:00:18 -08:00
parent af55978918
commit 9117b13576
7 changed files with 13 additions and 13 deletions

View File

@@ -108,7 +108,7 @@
/** Detect free variable `global` from Node.js or Browserified code and use it as `root` */
var freeGlobal = objectTypes[typeof global] && global;
if (freeGlobal && (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal)) {
if (freeGlobal && (freeGlobal.global === freeGlobal || freeGlobal.window === freeGlobal || freeGlobal.self === freeGlobal)) {
root = freeGlobal;
}
@@ -2694,7 +2694,7 @@
* @type Function
* @category Collections
* @param {Array|Object|string} collection The collection to iterate over.
* @param {string} prop The name of the property to pluck.
* @param {string} key The name of the property to pluck.
* @returns {Array} Returns a new array of property values.
* @example
*