_.ISSTRING
/**
* Underscore.js
*
* The _.isString() function is used to check whether
* the given object element is string or not.
**/
import * as _ from 'underscore'
let is_string = _.isString( object )
Foolish Flatworm