Files
meteor/packages/underscore/package.js
2012-01-27 20:02:26 -08:00

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