Skip to content

Commit

Permalink
fix(nld): recognise '-dreef' in street names (#170)
Browse files Browse the repository at this point in the history
fixes #167
  • Loading branch information
emacgillavry authored Jan 13, 2023
1 parent 016cdf2 commit 674a3ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
baan
daal
dijk
dreef
!plain|pln.
plein|pln
plantsoen|plnts
Expand Down
4 changes: 4 additions & 0 deletions test/address.nld.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ const testcase = (test, common) => {
{ street: 'Bosserdijk' }, { locality: 'Hoogland' }
])

assert('Rubicondreef, Utrecht', [
{ street: 'Rubicondreef' }, { locality: 'Utrecht' }
])

assert('St Ludgerusstraat, Utrecht', [
{ street: 'Ludgerusstraat' }, { locality: 'Utrecht' }
])
Expand Down

0 comments on commit 674a3ed

Please sign in to comment.