is-object.js
1  'use strict';
2  
3  var map = { function: true, object: true };
4  
5  module.exports = function (x) {
6  	return ((x != null) && map[typeof x]) || false;
7  };