Files
meteor/packages/id-map/package.js
Michael Vogt be8b02f457 [Idmap 1.1.1]: Removed unused function and update declarations (#11438)
* 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>
2021-05-18 12:48:04 +02:00

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');
});