mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 08:07:50 +00:00
Remove semicolons.
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
* [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
|
||||
* of values.
|
||||
*/
|
||||
const nativeObjectToString = Object.prototype.toString;
|
||||
const nativeObjectToString = Object.prototype.toString
|
||||
|
||||
/**
|
||||
* Converts `value` to a string using `Object.prototype.toString`.
|
||||
@@ -13,7 +13,7 @@ const nativeObjectToString = Object.prototype.toString;
|
||||
* @returns {string} Returns the converted string.
|
||||
*/
|
||||
function objectToString(value) {
|
||||
return nativeObjectToString.call(value);
|
||||
return nativeObjectToString.call(value)
|
||||
}
|
||||
|
||||
export default objectToString;
|
||||
export default objectToString
|
||||
|
||||
Reference in New Issue
Block a user