⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact 64038ea58acadb43cd390ff80abc22bc64e447d2cfdfa6a60abe9098e7c6840e:


import { T_STRING } from './../../global-variables'

/**
 * Check if passed argument is a string
 * @param   { * } value -
 * @returns { Boolean } -
 */
export default function isString(value) {
  return typeof value === T_STRING
}