mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 17:37:50 +00:00
Remove references to _.
This commit is contained in:
@@ -10,16 +10,15 @@ const stringTag = '[object String]';
|
||||
*
|
||||
* @static
|
||||
* @since 0.1.0
|
||||
* @memberOf _
|
||||
* @category Lang
|
||||
* @param {*} value The value to check.
|
||||
* @returns {boolean} Returns `true` if `value` is a string, else `false`.
|
||||
* @example
|
||||
*
|
||||
* _.isString('abc');
|
||||
* isString('abc');
|
||||
* // => true
|
||||
*
|
||||
* _.isString(1);
|
||||
* isString(1);
|
||||
* // => false
|
||||
*/
|
||||
function isString(value) {
|
||||
|
||||
Reference in New Issue
Block a user