You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.js 870B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. const shallowProperty = require('./shallow-property');
  2. const getLength = require('./get-length');
  3. const isArrayLike = require('./is-array-like');
  4. const isFunction = require('./is-function');
  5. const isObject = require('./is-object');
  6. const isArguments = require('./is-arguments');
  7. const identity = require('./identity');
  8. const getKeys = require('./get-keys');
  9. const property = require('./property');
  10. const matcher = require('./matcher');
  11. const isMatch = require('./is-match');
  12. const optimizeCb = require('./optimize-cb');
  13. const cb = require('./cb');
  14. const forEach = require('./for-each');
  15. const flatten = require('./flatten');
  16. const map = require('./map');
  17. module.exports = {
  18. shallowProperty,
  19. getLength,
  20. isArrayLike,
  21. isFunction,
  22. isObject,
  23. isArguments,
  24. identity,
  25. getKeys,
  26. property,
  27. matcher,
  28. isMatch,
  29. optimizeCb,
  30. cb,
  31. forEach,
  32. map,
  33. flatten
  34. };