* 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)
| 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. |