1// 7.2.1 RequireObjectCoercible(argument)
2module.exports = function (it) {
3  if (it == undefined) throw TypeError("Can't call method on  " + it);
4  return it;
5};
6