_baseFunctions.js 550 B

12345678910111213141516171819
  1. import arrayFilter from './_arrayFilter.js';
  2. import isFunction from './isFunction.js';
  3. /**
  4. * The base implementation of `_.functions` which creates an array of
  5. * `object` function property names filtered from `props`.
  6. *
  7. * @private
  8. * @param {Object} object The object to inspect.
  9. * @param {Array} props The property names to filter.
  10. * @returns {Array} Returns the function names.
  11. */
  12. function baseFunctions(object, props) {
  13. return arrayFilter(props, function(key) {
  14. return isFunction(object[key]);
  15. });
  16. }
  17. export default baseFunctions;