2023-11-30 14:15:19 +00:00

5 lines
133 B
JavaScript

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