INNER CODE UNIT · JavaScript

isObject

10miaomiao/bilimiao2 · desktop-app/src/desktopMain/resources/geetest-validator/js/gt.js:78

var isObject = function (value) {
    return (typeof value === 'object' && value !== null);
};
var isFunction = function (value) {
    return (typeof value === 'function');
};
var MOBILE = /Mobi/i.test(navigator.userAgent);
var pt = MOBILE ? 3 : 0;

var callbacks = {};
var status = {};

var nowDate = function () {
    var date = new Date();
    var year = date.getFullYear();
    var month = date.getMonth() + 1;
    var day = date.getDate();
    var hours = date.getHours();

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…