opentracing / opentracing-javascript

OpenTracing API for Javascript (both Node and browser). 🛑 This library is DEPRECATED! https://github.com/opentracing/specification/issues/163
http://opentracing.io
Apache License 2.0
1.09k stars 108 forks source link

Fix how requiring apiCompatibilityChecks #85

Closed MarckK closed 7 years ago

MarckK commented 7 years ago

The default export in opentracing/lib/test/api_compatibility.js. is a property on the exports object and thus is accessed with .default. There can be only one default property on the exports object. This property does not therefore need to be destructured.

yurishkuro commented 7 years ago

thanks!