mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05: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; |