var isFunction = ,
isMasked = ,
isObject = ,
toSource = ;
/**
* Used to match `RegExp`
* [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).
*/
var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
/** Used to detect host constructors (Safari). */
var reIsHostCtor = /^\[object .+?Constructor\]$/;
/** Used for built-in method references. */
var funcProto = ,
objectProto = ;
/** Used to resolve the decompiled source of functions. */
var funcToString = funcProto.;
/** Used to check objects for own properties. */
var hasOwnProperty = objectProto.;
/** Used to detect if a method is native. */
var reIsNative = ;
/**
* The base implementation of `_.isNative` without bad shim checks.
*
* @private
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is a native function,
* else `false`.
*/
module.exports = baseIsNative;