main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
393 bytes
|
Rev | Line | |
---|
[d565449] | 1 | import coreJsData from './_coreJsData.js';
|
---|
| 2 | import isFunction from './isFunction.js';
|
---|
| 3 | import stubFalse from './stubFalse.js';
|
---|
| 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 | export default isMaskable;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.