is-string.js 255 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 'use strict'; var toString = Object.prototype.toString , id = toString.call(''); module.exports = function (x) { return (typeof x === 'string') || (x && (typeof x === 'object') && ((x instanceof String) || (toString.call(x) === id))) || false; };