mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
* Replaced Lodash functions w/ Native * livedata_server bug fix * Migrate Session from prototype in livedata_server to isolated class based file * Migrated Session Document View to class, minor performance improvements * Replace .get() w/ ES2020 * Fix bug with Session.getCollectionView * Modified SessionCollectionView.diffDocument to utilize core/diff-sequence makeChangedFields w/ Map instead of Object * Convert livedata_server in @ddp-server to Class structure w/ minimal performance improvements * modern vdeclerations and removal of unused hasOwnProperty * Cleanup mixed branches * Change decleration in loop * testing bug * Add missing package Co-authored-by: Jan Dvorak <storyteller@freedombase.net>
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
Package.describe({
|
|
summary: "Dictionary data structure allowing non-string keys",
|
|
version: '1.1.1'
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use('ecmascript');
|
|
api.use('ejson');
|
|
api.mainModule('id-map.js');
|
|
api.export('IdMap');
|
|
});
|