mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 16:17:50 +00:00
Remove semicolons.
This commit is contained in:
@@ -7,14 +7,14 @@
|
||||
* @returns {boolean} Returns `true` if `value` is `undefined`, else `false`.
|
||||
* @example
|
||||
*
|
||||
* isUndefined(void 0);
|
||||
* isUndefined(void 0)
|
||||
* // => true
|
||||
*
|
||||
* isUndefined(null);
|
||||
* isUndefined(null)
|
||||
* // => false
|
||||
*/
|
||||
function isUndefined(value) {
|
||||
return value === undefined;
|
||||
return value === undefined
|
||||
}
|
||||
|
||||
export default isUndefined;
|
||||
export default isUndefined
|
||||
|
||||
Reference in New Issue
Block a user