UNPKG
mertan
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
geometrical operations
ashnur/mertan
mertan
/
temp.js
9 lines
(8 loc)
•
247 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
function
same_direction
(
d
){
return
d.
reduce
(
function
(
c,v
){
return
v ==
INF
|| v ==
ORG
? c : c ==
undefined
? v : v != c ?
false
: c },
undefined
) }