diff options
author | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-04 17:44:30 +1000 |
---|---|---|
committer | Andrew Harvey <andrew@alantgeo.com.au> | 2021-05-04 17:44:30 +1000 |
commit | e63aa8fdbbe8008df701bede1f91b559abbacdf7 (patch) | |
tree | e8722f17020f792c7d9a8c8a505420dd6b21bb90 /lib | |
parent | 103713cbc0f4ee4e70aae88aeefaede663347e57 (diff) |
update jsdoc
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) => { |