mirror of
https://github.com/abrendan/MicDropMessages.git
synced 2025-06-16 20:55:00 +02:00
6 lines
130 B
JavaScript
6 lines
130 B
JavaScript
var core = require('./core');
|
|
|
|
module.exports = function isCore(x) {
|
|
return Object.prototype.hasOwnProperty.call(core, x);
|
|
};
|