UNPKG
@sroussey/parse-address
Version:
latest (3.0.0-beta1)
3.0.0-beta1
2.4.2
2.4.1
2.4.0
2.3.1
2.2.10
2.2.9
2.2.5
US Street Address Parser
github.com/sroussey/parse-address
sroussey/parse-address
@sroussey/parse-address
/
src
/
maps
/
ca
/
directions.ts
15 lines
•
244 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
const
directionsMap = {
north
:
'N'
,
northeast
:
'NE'
,
east
:
'E'
,
southeast
:
'SE'
,
south
:
'S'
,
southwest
:
'SW'
,
west
:
'W'
,
northwest
:
'NW'
,
// French directional terms
nord
:
'N'
,
est
:
'E'
,
sud
:
'S'
,
ouest
:
'W'
, }