UNPKG
react-odyssey
Version:
latest (4.0.3)
4.0.3
4.0.2
4.0.1
4.0.0
3.0.0
2.5.0
2.4.0
2.3.3
2.3.2
2.3.1
2.3.0
2.2.0
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.1.0
1.0.2
1.0.1
React components for Odyssey design system
oktadeveloper/react-odyssey
react-odyssey
/
src
/
util.ts
4 lines
(2 loc)
•
152 B
text/typescript
View Raw
1
2
3
4
export
const
isMobilish
= (
) =>
window
.
matchMedia
(
'(max-width: 800px)'
).
matches
;
export
type
Omit
<T, K
extends
keyof T> =
Pick
<T,
Exclude
<keyof T, K>>