# @ts-check

import isString_getType from './getType'

###* @type import('./isString').IsString ###
export default (ipt) ->
  isString_type = isString_getType ipt
  unless isString_type == 'string' then return false
  return true