1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-05 20:46:14 +01:00
fab-manager/vendor/assets/components/messageformat/locale/lag.js
2016-03-23 18:39:41 +01:00

10 lines
149 B
JavaScript

MessageFormat.locale.lag = function (n) {
if (n === 0) {
return 'zero';
}
if (n > 0 && n < 2) {
return 'one';
}
return 'other';
};