Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

View File

@@ -28,26 +28,25 @@ const hasOwnProperty = objectProto.hasOwnProperty;
* Similarly, maps and sets are considered empty if they have a `size` of `0`.
*
* @static
* @memberOf _
* @since 0.1.0
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is empty, else `false`.
* @example
*
* _.isEmpty(null);
* isEmpty(null);
* // => true
*
* _.isEmpty(true);
* isEmpty(true);
* // => true
*
* _.isEmpty(1);
* isEmpty(1);
* // => true
*
* _.isEmpty([1, 2, 3]);
* isEmpty([1, 2, 3]);
* // => false
*
* _.isEmpty({ 'a': 1 });
* isEmpty({ 'a': 1 });
* // => false
*/
function isEmpty(value) {