source: imaps-frontend/node_modules/lodash-es/_isMaskable.js@ d565449

main
Last change on this file since d565449 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
Line 
1import coreJsData from './_coreJsData.js';
2import isFunction from './isFunction.js';
3import 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 */
12var isMaskable = coreJsData ? isFunction : stubFalse;
13
14export default isMaskable;
Note: See TracBrowser for help on using the repository browser.