We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 018797e commit 7366e4aCopy full SHA for 7366e4a
util/parseSemicolonDelimitedValues.js
@@ -5,8 +5,10 @@ const _ = require('lodash');
5
function parseSemicolonDelimitedValues(value) {
6
return (_.isString(value) ? value : '')
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
10
.map(v => v.trim())
11
.filter(v => v.length);
12
}
13
-module.exports = parseSemicolonDelimitedValues;
14
+module.exports = parseSemicolonDelimitedValues;
0 commit comments