source: node_modules/lodash/_isMaskable.js

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 395 bytes
Line 
1var 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 */
12var isMaskable = coreJsData ? isFunction : stubFalse;
13
14module.exports = isMaskable;
Note: See TracBrowser for help on using the repository browser.