Fix ESLint errors and tests.

I've commented out a test for `_.merge` and will re-look it as I
gradually cleanup the codebase.
This commit is contained in:
Benjamin Tan
2020-12-21 21:52:57 +08:00
parent bcd0610069
commit 5aaf898a8f
3 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,3 @@
/**
* Checks if `value` is classified as a `Function` object.
*
@@ -13,16 +12,16 @@
*
* isFunction(() => {})
* // => true
*
*
* isFunction(async () => {})
* // => true
*
*
* isFunction(function * Any() {})
* // => true
*
*
* isFunction(Math.round)
* // => true
*
*
* isFunction(/abc/)
* // => false
*/