UNPKG

css-to-react-native

Version:
23 lines (17 loc) 479 B
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 }