Remove semicolons.

This commit is contained in:
John-David Dalton
2017-02-04 23:50:10 -08:00
parent f3a8e55e70
commit 6cb3460fce
452 changed files with 4261 additions and 4261 deletions

View File

@@ -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