Skip to content

Commit

Permalink
gix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
workgroupengineering committed Sep 10, 2022
1 parent c160a7f commit d6b2c41
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/ical/design.js
Original file line number Diff line number Diff line change
Expand Up @@ -748,8 +748,7 @@ ICAL.design = (function() {
matches: /^[a-zA-Z0-9-]+$/ // Could go with a more strict regex here
},
"phone-number": {
fromICAL: function(aValue) {

fromICAL: function(aValue) {
return Array.from(aValue).filter(function(c) {
return c === '\\' ? undefined : c;
}).join('');
Expand Down

0 comments on commit d6b2c41

Please sign in to comment.