is-string.js (109B)
1export default function isString(input) { 2 return typeof input === 'string' || input instanceof String; 3}