dojo / core

:rocket: Dojo 2 - language helpers and utilities.
http://dojo.io
Other
213 stars 58 forks source link

Standardize Constructor exports #404

Closed ktiedt closed 6 years ago

ktiedt commented 6 years ago

Enhancement The following Constructor classes are all missing the standard pattern of named export + default export.

https://github.com/dojo/core/blob/master/src/DateObject.ts#L61 https://github.com/dojo/core/blob/master/src/IdentityRegistry.ts#L34 https://github.com/dojo/core/blob/master/src/List.ts#L10 https://github.com/dojo/core/blob/master/src/MatchRegistry.ts#L15 https://github.com/dojo/core/blob/master/src/MultiMap.ts#L11 https://github.com/dojo/core/blob/master/src/Scheduler.ts#L19 https://github.com/dojo/core/blob/master/src/async/ExtensiblePromise.ts#L37 https://github.com/dojo/core/blob/master/src/async/Task.ts#L36 https://github.com/dojo/core/blob/master/src/request/Headers.ts#L13 https://github.com/dojo/core/blob/master/src/request/ProviderRegistry.ts#L5 https://github.com/dojo/core/blob/master/src/request/SubscriptionPool.ts#L3 https://github.com/dojo/core/blob/master/src/request/TimeoutError.ts#L1

I'll submit a PR to fix this later today.