mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
10 lines
No EOL
278 B
JavaScript
10 lines
No EOL
278 B
JavaScript
const PostsStub = {
|
|
helpers: x => x
|
|
}
|
|
|
|
/* we need to handle two scenarios: when the package is called as a Meteor package,
|
|
and when it's called as a NPM package */
|
|
const Posts = typeof Mongo !== "undefined" ? new Mongo.Collection("posts") : PostsStub;
|
|
|
|
|
|
export default Posts; |