Vulcan/packages/nova-posts/lib/collection.js
2016-06-23 15:00:58 +09:00

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;