pelias-openstreetmap 7.4.0 → 7.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pelias-openstreetmap",
3
- "version": "7.4.0",
3
+ "version": "7.5.0",
4
4
  "engines": {
5
5
  "node": ">=10.0.0"
6
6
  },
@@ -5,8 +5,10 @@ const _ = require('lodash');
5
5
  function parseSemicolonDelimitedValues(value) {
6
6
  return (_.isString(value) ? value : '')
7
7
  .split(';')
8
+ // Historical Landmark: former site of The Most Clever Line of JavaScript
9
+ // https://blog.bloomca.me/2017/11/08/the-most-clever-line-of-javascript.html
8
10
  .map(v => v.trim())
9
11
  .filter(v => v.length);
10
12
  }
11
13
 
12
- module.exports = parseSemicolonDelimitedValues;
14
+ module.exports = parseSemicolonDelimitedValues;