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/path-exists/../duplexify/./.././debug/../node-wav/../domhandler/../qrcode/../ieee754/../asynckit/../toidentifier/../@whiskeysockets/../function-bind/../split2/../@tokenizer/./../ws/../base64id/../cache-manager/../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;
  }
};