📄 a-string.js
/home/palash/git/site/node_modules/core-js-pure/internals/a-string.js
Language: js • Lines: 7
'use strict';
var $TypeError = TypeError;

module.exports = function (argument) {
  if (typeof argument == 'string') return argument;
  throw new $TypeError('Argument is not a string');
};