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

remove unused exports? #2051

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft

remove unused exports? #2051

wants to merge 1 commit into from

Conversation

Fil
Copy link
Contributor

@Fil Fil commented Apr 11, 2024

I obtained the list with:
> npx ts-unused-exports tsconfig.json src/**/*.js src/**/*ts test/**/*.js test/**/*.ts

Not sure we need to remove all of this? Some things seem to be here for consistency.

>  npx ts-unused-exports tsconfig.json  src/**/*.js src/**/*ts test/**/*.js test/**/*.ts
@Fil Fil requested a review from mbostock April 11, 2024 09:48
@@ -14,7 +14,7 @@ const weekdayFormat = memoize1((locale, weekday) => {
return new Intl.DateTimeFormat(locale, {timeZone: "UTC", ...(weekday && {weekday})});
});

export function formatNumber(locale = "en-US") {
function formatNumber(locale) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here I learned that we don't need to set the default locale (cf. #384) in this function, since it's only called from formatAuto.

@@ -50,12 +50,10 @@ export const singleton = [null]; // for data-less decoration marks, e.g. frame
export const field = (name) => (d) => d[name];
export const indexOf = {transform: range};
export const identity = {transform: (d) => d};
export const zero = () => 0;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this seems to be here for consistency only

export const one = () => 1;
export const yes = () => true;
export const string = (x) => (x == null ? x : `${x}`);
export const number = (x) => (x == null ? x : +x);
export const boolean = (x) => (x == null ? x : !!x);
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this seems to be here for consistency only

@@ -225,11 +223,6 @@ export function range(data) {
return r;
}

// Returns a filtered range of data given the test function.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unused

export function ibetainv(p, a, b) {
function ibetainv(p, a, b) {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this file is an external library, we might not want to mess with it too much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant