610ded80ffa1b7057524fc7a64338f56cbcd457bdef39a459bbc679ef542592b6a2a7af4db6888ab71e5a03f0834c11b4ea03d9cd7d7ea3474126cce4fdef1 189 B

1234567
  1. 'use strict';
  2. var $TypeError = TypeError;
  3. module.exports = function (argument) {
  4. if (typeof argument == 'string') return argument;
  5. throw new $TypeError('Argument is not a string');
  6. };