diff options
-rw-r--r-- | lib/toOSM.js | 5 | ||||
-rw-r--r-- | package.json | 1 |
2 files changed, 2 insertions, 4 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) => { diff --git a/package.json b/package.json index ff27c53..78a92ba 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,6 @@ "ndjson": "^2.0.0", "readable-stream": "^3.6.0", "tape": "^5.2.2", - "title-case": "^3.0.3", "yargs": "^17.0.0" }, "engines": { |