mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
12 lines
261 B
JavaScript
12 lines
261 B
JavaScript
Package.describe({
|
|
summary: "Ordered traversable dictionary with a mutable ordering",
|
|
version: '1.1.0',
|
|
documentation: null
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
api.use('ecmascript');
|
|
api.mainModule('ordered_dict.js');
|
|
api.export('OrderedDict');
|
|
});
|