2019-03-24 08:28:57 +01:00

4 lines
116 B
JavaScript

module.exports = function isString (value) {
return Object.prototype.toString.call(value) === '[object String]'
}