aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/core/shim/string.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/montage/core/shim/string.js')
-rwxr-xr-xnode_modules/montage/core/shim/string.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/node_modules/montage/core/shim/string.js b/node_modules/montage/core/shim/string.js
index 1b71cec3..52f89710 100755
--- a/node_modules/montage/core/shim/string.js
+++ b/node_modules/montage/core/shim/string.js
@@ -63,4 +63,19 @@ Object.defineProperties(String.prototype, /** @lends external:String.prototype#*
63 63
64}); 64});
65 65
66/**
67 Shim implementation of String.isString() for browsers that don't yet support it.
68 @function external:String.isString()
69 @param {object} obj The object to determine if its a String.
70 @returns {boolean} Object.prototype.toString.call(obj) === "[object String]"
71*/
72if (!String.isString) {
73 Object.defineProperty(String, "isString", {
74 value: function(obj) {
75 return Object.prototype.toString.call(obj) === "[object String]";
76 }
77 });
78}
79
80
66 81