mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
25 lines
513 B
JavaScript
25 lines
513 B
JavaScript
![]() |
// stubs for NPM compatibility
|
||
|
|
||
|
const returnEmptyObject = function () {
|
||
|
return {};
|
||
|
}
|
||
|
|
||
|
console.log(Mongo)
|
||
|
|
||
|
const Mongo = typeof Mongo !== "undefined" ? Mongo : {
|
||
|
Collection: function () {
|
||
|
return {attachSchema: returnEmptyObject}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
console.log("// Mongo")
|
||
|
console.log(Mongo)
|
||
|
|
||
|
const Meteor = typeof Meteor !== "undefined" ? Meteor : {
|
||
|
methods: returnEmptyObject
|
||
|
};
|
||
|
|
||
|
const SimpleSchema = typeof SimpleSchema !== "undefined" ? SimpleSchema : returnEmptyObject;
|
||
|
|
||
|
const Foo = "bar"
|
||
|
export { Mongo, Foo }
|