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

@@ -16,7 +16,6 @@ const CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=p
* which rely on core-js.
*
* @static
* @memberOf _
* @since 3.0.0
* @category Lang
* @param {*} value The value to check.
@@ -24,10 +23,10 @@ const CORE_ERROR_TEXT = 'Unsupported core-js use. Try https://npms.io/search?q=p
* else `false`.
* @example
*
* _.isNative(Array.prototype.push);
* isNative(Array.prototype.push);
* // => true
*
* _.isNative(_);
* isNative(_);
* // => false
*/
function isNative(value) {