mirror of
https://github.com/github/codeql-action.git
synced 2025-12-28 02:00:12 +08:00
10 lines
232 B
JavaScript
10 lines
232 B
JavaScript
'use strict';
|
|
const irregularPlurals = require('./irregular-plurals.json');
|
|
|
|
// Ensure nobody can modify each others Map
|
|
Object.defineProperty(module, 'exports', {
|
|
get() {
|
|
return new Map(Object.entries(irregularPlurals));
|
|
}
|
|
});
|