diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/toOSM.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/toOSM.js b/lib/toOSM.js index f9fab84..2a5c75c 100644 --- a/lib/toOSM.js +++ b/lib/toOSM.js @@ -1,4 +1,3 @@ -const { titleCase } = require('title-case') const { capitalCase } = require('capital-case') const buildingUnitType = { @@ -68,8 +67,8 @@ const emptyNames = [ /** * Transforms a GeoJSON Feature from the Vicmap address schema into OSM schema * - * @param sourceFeature Feature in Vicmap address schema - * @returns Feature in OSM schema + * @param {Array} sourceFeature Feature in Vicmap address schema + * @returns {Object} Feature in OSM schema */ module.exports = (sourceFeature, options) => { |