Files
Ceras/themes/ceras/node_modules/es5-ext/string/is-string.js
T
2023-07-12 16:31:19 +01:00

14 lines
291 B
JavaScript
Executable File

"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
);
};