CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
core.js13 linesDownload Raw Back to lib
1'use strict';2 3var isCoreModule = require('is-core-module');4var data = require('./core.json');5 6var core = {};7for (var mod in data) { // eslint-disable-line no-restricted-syntax8    if (Object.prototype.hasOwnProperty.call(data, mod)) {9        core[mod] = isCoreModule(mod);10    }11}12module.exports = core;13