Newer
Older
vmk-demo-bot / admin / node_modules / es5-ext / string / is-string.js
@eugene-sukhodolskiy eugene-sukhodolskiy 18 days ago 291 bytes init
"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
	);
};