BE-SPAN/node_modules/es5-ext/string/is-string.js
githubna-ilham 722cd440e8 first commit
2024-10-20 22:04:16 +07:00

14 lines
291 B
JavaScript

"use strict";
var objToString = Object.prototype.toString, id = objToString.call("");
module.exports = function (value) {
return (
typeof value === "string" ||
(value &&
typeof value === "object" &&
(value instanceof String || objToString.call(value) === id)) ||
false
);
};