|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
309 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | var isCoreModule = require('is-core-module');
|
|---|
| 4 | var data = require('./core.json');
|
|---|
| 5 |
|
|---|
| 6 | var core = {};
|
|---|
| 7 | for (var mod in data) { // eslint-disable-line no-restricted-syntax
|
|---|
| 8 | if (Object.prototype.hasOwnProperty.call(data, mod)) {
|
|---|
| 9 | core[mod] = isCoreModule(mod);
|
|---|
| 10 | }
|
|---|
| 11 | }
|
|---|
| 12 | module.exports = core;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.