Back | Home
الـ Path الحالي: /home/picotech/domains/instantly.picotech.app/public_html/public/uploads/../uploads/../../../../instantly.picotech.app/homes/../../wa.picotech.app/public_html/node_modules/escape-html/.././object-assign/../@hapi/../utils-merge/../node-cleanup/../unpipe/../url
الملفات الموجودة في هذا الـ Path:
.
..
.npmignore
.travis.yml
.zuul.yml
LICENSE
README.md
package.json
test.js
url.js
util.js

مشاهدة ملف: util.js

'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;
  }
};