mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
9 lines
222 B
JavaScript
9 lines
222 B
JavaScript
Package.describe({
|
|
summary: "Collection of small helper functions (map, each, bind, ...)"
|
|
});
|
|
|
|
Package.on_use(function (api, where) {
|
|
where = where || ['client', 'server'];
|
|
api.add_files('underscore.js', where);
|
|
});
|