4 lines
133 B

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