PHP 8.2.30
Preview: isNative.js Size: 1.26 KB
//opt/alt/alt-nodejs9/root/lib/node_modules/npm/node_modules/cli-table2/node_modules/lodash/lang/isNative.js

var isFunction = require('./isFunction'),
    isObjectLike = require('../internal/isObjectLike');

/** Used to detect host constructors (Safari > 5). */
var reIsHostCtor = /^\[object .+?Constructor\]$/;

/** Used for native method references. */
var objectProto = Object.prototype;

/** Used to resolve the decompiled source of functions. */
var fnToString = Function.prototype.toString;

/** Used to check objects for own properties. */
var hasOwnProperty = objectProto.hasOwnProperty;

/** Used to detect if a method is native. */
var reIsNative = RegExp('^' +
  fnToString.call(hasOwnProperty).replace(/[\\^$.*+?()[\]{}|]/g, '\\$&')
  .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
);

/**
 * Checks if `value` is a native function.
 *
 * @static
 * @memberOf _
 * @category Lang
 * @param {*} value The value to check.
 * @returns {boolean} Returns `true` if `value` is a native function, else `false`.
 * @example
 *
 * _.isNative(Array.prototype.push);
 * // => true
 *
 * _.isNative(_);
 * // => false
 */
function isNative(value) {
  if (value == null) {
    return false;
  }
  if (isFunction(value)) {
    return reIsNative.test(fnToString.call(value));
  }
  return isObjectLike(value) && reIsHostCtor.test(value);
}

module.exports = isNative;

Directory Contents

Dirs: 0 × Files: 30

Name Size Perms Modified Actions
2.24 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.75 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
39 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
464 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
493 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
963 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.13 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
901 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
851 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
572 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.20 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.92 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
955 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
811 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.03 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.86 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
825 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.26 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
365 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
1.03 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
732 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
2.17 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
830 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
889 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
2.44 KB lrw-r--r-- 2021-09-28 11:28:35
Edit Download
400 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
458 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
487 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
697 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download
726 B lrw-r--r-- 2021-09-28 11:28:35
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).