mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
7 lines
239 B
JavaScript
7 lines
239 B
JavaScript
import path from 'path'
|
|
export default function getMapfile(options) {
|
|
if (options.map && typeof options.map.annotation === 'string') {
|
|
return `${path.dirname(options.to)}/${options.map.annotation}`
|
|
}
|
|
return `${options.to}.map`
|
|
}
|