(value)
| 4 | // flipped in RTL contexts. This should be used only in situations where the style must remain |
| 5 | // unflipped regardless of direction context. See: https://github.com/kentcdodds/rtl-css-js#usage |
| 6 | export default function noflip(value) { |
| 7 | if (typeof value === 'number') return `${value}px ${NOFLIP}`; |
| 8 | if (typeof value === 'string') return `${value} ${NOFLIP}`; |
| 9 | |
| 10 | throw new TypeError('noflip expects a string or a number'); |
| 11 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…