HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/tana/frontend/node_modules/locutus/php/array/array_keys.js.map
{"version":3,"sources":["../../../src/php/array/array_keys.js"],"names":["module","exports","array_keys","input","searchValue","argStrict","search","tmpArr","strict","include","key","hasOwnProperty","length"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,UAAT,CAAqBC,KAArB,EAA4BC,WAA5B,EAAyCC,SAAzC,EAAoD;AAAE;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,MAAIC,SAAS,OAAOF,WAAP,KAAuB,WAApC;AACA,MAAIG,SAAS,EAAb;AACA,MAAIC,SAAS,CAAC,CAACH,SAAf;AACA,MAAII,UAAU,IAAd;AACA,MAAIC,MAAM,EAAV;;AAEA,OAAKA,GAAL,IAAYP,KAAZ,EAAmB;AACjB,QAAIA,MAAMQ,cAAN,CAAqBD,GAArB,CAAJ,EAA+B;AAC7BD,gBAAU,IAAV;AACA,UAAIH,MAAJ,EAAY;AACV,YAAIE,UAAUL,MAAMO,GAAN,MAAeN,WAA7B,EAA0C;AACxCK,oBAAU,KAAV;AACD,SAFD,MAEO,IAAIN,MAAMO,GAAN,MAAeN,WAAnB,EAAgC;AACrCK,oBAAU,KAAV;AACD;AACF;;AAED,UAAIA,OAAJ,EAAa;AACXF,eAAOA,OAAOK,MAAd,IAAwBF,GAAxB;AACD;AACF;AACF;;AAED,SAAOH,MAAP;AACD,CApCD","file":"array_keys.js","sourcesContent":["module.exports = function array_keys (input, searchValue, argStrict) { // eslint-disable-line camelcase\n  //  discuss at: http://locutus.io/php/array_keys/\n  // original by: Kevin van Zonneveld (http://kvz.io)\n  //    input by: Brett Zamir (http://brett-zamir.me)\n  //    input by: P\n  // bugfixed by: Kevin van Zonneveld (http://kvz.io)\n  // bugfixed by: Brett Zamir (http://brett-zamir.me)\n  // improved by: jd\n  // improved by: Brett Zamir (http://brett-zamir.me)\n  //   example 1: array_keys( {firstname: 'Kevin', surname: 'van Zonneveld'} )\n  //   returns 1: [ 'firstname', 'surname' ]\n\n  var search = typeof searchValue !== 'undefined'\n  var tmpArr = []\n  var strict = !!argStrict\n  var include = true\n  var key = ''\n\n  for (key in input) {\n    if (input.hasOwnProperty(key)) {\n      include = true\n      if (search) {\n        if (strict && input[key] !== searchValue) {\n          include = false\n        } else if (input[key] !== searchValue) {\n          include = false\n        }\n      }\n\n      if (include) {\n        tmpArr[tmpArr.length] = key\n      }\n    }\n  }\n\n  return tmpArr\n}\n"]}