_isString.js 106 B

123
  1. export default function _isString(x) {
  2. return Object.prototype.toString.call(x) === '[object String]';
  3. }