css-to-react-native
Version:
Convert CSS text to a React Native stylesheet object
23 lines (17 loc) • 479 B
JavaScript
import { tokens } from '../tokenTypes'
const { SPACE, IDENT, STRING } = tokens
export default tokenStream => {
let fontFamily
if (tokenStream.matches(STRING)) {
fontFamily = tokenStream.lastValue
} else {
fontFamily = tokenStream.expect(IDENT)
while (tokenStream.hasTokens()) {
tokenStream.expect(SPACE)
const nextIdent = tokenStream.expect(IDENT)
fontFamily += ` ${nextIdent}`
}
}
tokenStream.expectEmpty()
return fontFamily
}