MCPcopy
hub / github.com/lodash/lodash / isMasked

Function isMasked

lodash.js:6453–6455  ·  view source on GitHub ↗

* Checks if `func` has its source masked. * * @private * @param {Function} func The function to check. * @returns {boolean} Returns `true` if `func` is masked, else `false`.

(func)

Source from the content-addressed store, hash-verified

6451 * @returns {boolean} Returns `true` if `func` is masked, else `false`.
6452 */
6453 function isMasked(func) {
6454 return !!maskSrcKey && (maskSrcKey in func);
6455 }
6456
6457 /**
6458 * Checks if `func` is capable of being masked.

Callers 1

baseIsNativeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected