blob: 719aeec16c5aa5e7e2ced913b6555f549a13d2eb [file] [log] [blame]
'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;
};