We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
98cb9b5
defa0b6: Add compose function that can be used to compose multiple functions into one:
compose
// before export default wrapWithLoggerContext(withSpanAttributes(handler)); // after export default compose(withLoggerContext, withSpanAttributes)(handler);