Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('should handle global options', function() {
MakePlural.ordinals = true
var mp = new MakePlural('en').compile()
expect(mp(2, true)).to.equal('two')
MakePlural.ordinals = false
})
})