Appearance
import getTypeOf from './getTypeOf' export const isString = (target) => { return typeof target === 'string' && getTypeOf(target) === 'string' }
import { isString } from 'vivace-tool' console.log(isString('a')) // true console.log(isString({})) // false