We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
it('Handle character choice in context', function () { const context = { lucy: { name: 'Lucy', pronoun: 'she', car: 'Lexus' }, sam: { name: 'Sam', pronoun: 'he', car: 'Subaru' }, }; const script = { start: "Meet $person.name. $person.pronoun().cap drives a $person.car().", "#person": "$[sam | lucy]" }; const res = RiGrammar.expand(script, context); console.log(res); expect(res).matches(/an ox(en)?/); });
The text was updated successfully, but these errors were encountered:
dhowe
No branches or pull requests
The text was updated successfully, but these errors were encountered: