Passed
Pull Request — master (#127)
by
unknown
01:42
created

src/util.js (2 issues)

1
/**
2
 * @param {any} value
3
 * @returns {boolean} true if value is a function
4
 */
5
 const isFunction = (value) => typeof value === 'function'
0 ignored issues
show
The constant isFunction seems to be never used. Consider removing it.
Loading history...
6
7
 /**
8
  * @param {any} value
9
  * @returns  {boolean} true if value is a string
10
  */
11
 const isString = (value) => typeof value === 'string' || value instanceof String
0 ignored issues
show
The constant isString seems to be never used. Consider removing it.
Loading history...
12