Last change
on this file since 6fe77af was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
395 bytes
|
Line | |
---|
1 | var coreJsData = require('./_coreJsData'),
|
---|
2 | isFunction = require('./isFunction'),
|
---|
3 | stubFalse = require('./stubFalse');
|
---|
4 |
|
---|
5 | /**
|
---|
6 | * Checks if `func` is capable of being masked.
|
---|
7 | *
|
---|
8 | * @private
|
---|
9 | * @param {*} value The value to check.
|
---|
10 | * @returns {boolean} Returns `true` if `func` is maskable, else `false`.
|
---|
11 | */
|
---|
12 | var isMaskable = coreJsData ? isFunction : stubFalse;
|
---|
13 |
|
---|
14 | module.exports = isMaskable;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.