(str)
| 105 | exports.underscore = underscore; |
| 106 | |
| 107 | function singularize(str) { |
| 108 | return inflection.singularize(str); |
| 109 | } |
| 110 | exports.singularize = singularize; |
| 111 | |
| 112 | function pluralize(str) { |
nothing calls this directly
no test coverage detected