Skip to content

Commit e6d277b

Browse files
committed
fix: more anon default exports
1 parent ade9c65 commit e6d277b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cldr/parse-range-date.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
export default function(value) {
1+
export default function parseRangeDate(value) {
22
const parts = value.split('-');
33
const year = parseInt(parts[0], 10);
44
const month = parseInt(parts[1], 10) - 1;
55
const day = parseInt(parts[2], 10);
66

77
return new Date(year, month, day);
8-
}
8+
}

0 commit comments

Comments
 (0)