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