e74e2e039e
no issue - switch `jscs` and `jshint` inline config to `eslint` config - fix eslint errors, predominantly in tests where the config now the main app config more closely
12 lines
263 B
JavaScript
12 lines
263 B
JavaScript
// isNumber function from lodash
|
|
|
|
const {toString} = Object.prototype;
|
|
|
|
export default function (value) {
|
|
return typeof value === 'number'
|
|
|| value
|
|
&& typeof value === 'object'
|
|
&& toString.call(value) === '[object Number]'
|
|
|| false;
|
|
}
|