Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(commons): use named exports #3496

Open
wants to merge 4 commits into
base: dove
Choose a base branch
from

Commits on Jun 2, 2024

  1. refactor(commons): use named exports

    - export every function directly
    - improve 'some' & 'every' for early exit
    - use 'Object.values' for 'values' instead of 'Object.keys.map' (2x perf)
    - isObject: first check for null
    - named imports from @feathersjs/commons in every package
    - deprecate 'keys', use `Object.keys`
    - deprecate 'values', use `Object.values`
    - deprecate 'extend', use `Object.assign`
    - use type guard for `isPromise`, `isObject` & `isObjectOrArray`
    - add jsdoc comments
    fratzinger committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    3ef1cd7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c333806 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2024

  1. chore: export default _

    fratzinger committed Jun 15, 2024
    Configuration menu
    Copy the full SHA
    83413ad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e84edd0 View commit details
    Browse the repository at this point in the history