8 lines
141 B
JavaScript
8 lines
141 B
JavaScript
'use strict'
|
|
|
|
module.exports = isObject
|
|
|
|
function isObject (input) {
|
|
return Object.prototype.toString.apply(input) === '[object Object]'
|
|
}
|