persona-community-5/.pnpm-store/v3/files/45/6951431ce1d1c5a3988c672848bf6e2c9316688afcc097d306a7ac6464d345f7b7b2465a595355a257b5b474458e842552e005a2d305e3b2b9e97a9ba84f44
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

13 lines
309 B
Plaintext

'use strict';
var isCoreModule = require('is-core-module');
var data = require('./core.json');
var core = {};
for (var mod in data) { // eslint-disable-line no-restricted-syntax
if (Object.prototype.hasOwnProperty.call(data, mod)) {
core[mod] = isCoreModule(mod);
}
}
module.exports = core;