mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
Package.describe({
|
|
summary: 'JS simulation of MongoDB ObjectIDs',
|
|
version: '1.0.9',
|
|
documentation: null
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.export('MongoID');
|
|
api.use(['ejson', 'random', 'ecmascript']);
|
|
api.mainModule('id.js');
|
|
});
|