7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
|
|
// Geo module - geographic utilities
|
||
|
|
// This will be migrated in a future iteration
|
||
|
|
// For now, we provide basic stubs
|
||
|
|
|
||
|
|
export function parseGeoname() {
|
||
|
|
throw new Error('Geo.parseGeoname not yet migrated to ES modules');
|
||
|
|
}
|