aboutsummaryrefslogtreecommitdiff
path: root/node_modules/url/util.js
blob: 97dcf31cd4e6c754fbda7ec15950f98cb0cee87c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
'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;
  }
};