-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathisString.umd.js
42 lines (41 loc) · 1.36 KB
/
isString.umd.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
;(function (factory) {
if (typeof define === 'function' && define.amd)
define([], factory);
else if (typeof exports === 'object' && !!exports && !exports.nodeType)
if (typeof module === 'object' && !!module && module.exports)
module.exports = factory();
else
exports['default'] = factory();
else if (typeof YUI === 'function' && YUI.add)
YUI.add('is-string', function (Y) { Y.isString = factory(); }, '1.0.8');
else
String.isString = factory();
})(function () {
var strToString = ('').toString,
hasBind = Function.prototype && Function.prototype.bind,
strToStrCall = hasBind && strToString.call.bind(strToString),
isString = function (str) {
/*@cc_on
@if (@_jscript_version >= 5) @*/
try {
hasBind ? strToStrCall(str) : strToString.call(str);
return true;
} catch (e) {
return false;
}
/*@end
@*/
};
return function (str) {
return typeof str === 'string' ||
str && typeof str === 'object' &&
/*@cc_on
@if (@_jscript_version < 5.5)
/^\s*function\s*String\(\)\s*{\s*\[native code\]\s*}\s*$/.test(str.constructor)
@else @*/
isString(str)
/*@end
@*/
|| false;
};
});