2017-06-08_509bba0/509bba0_unpacked_with_node_modules/~/url/util.js
2022-07-26 10:06:20 -07:00

24 lines
No EOL
413 B
JavaScript
Executable file

'use strict';
module.exports = {
isString: function(arg) {
return typeof(arg) === 'string';
},
isObject: function(arg) {
return typeof(arg) === 'object' && arg !== null;
},
isNull: function(arg) {
return arg === null;
},
isNullOrUndefined: function(arg) {
return arg == null;
}
};
//////////////////
// WEBPACK FOOTER
// ./~/url/util.js
// module id = 5561
// module chunks = 2