is-string.js 140 B

12345
  1. import isType from './is-type';
  2. export default (function (str) {
  3. return isType(str, 'String');
  4. });
  5. //# sourceMappingURL=is-string.js.map