corrade-nucleus-nucleons – Blame information for rev 38

Subversion Repositories:
Rev:
Rev Author Line No. Line
38 office 1 export default function isObject(input) {
2 // IE8 will treat undefined and null as object if it wasn't for
3 // input != null
4 return input != null && Object.prototype.toString.call(input) === '[object Object]';
5 }