Files
meteor/packages/underscore/package.js
2011-12-08 16:28:47 -08:00

10 lines
323 B
JavaScript

Package.describe({
summary: "Collection of small helper functions (map, each, bind, ...)"
});
// XXX I look forward to that happy day when the user of a package
// specifies whether they want to use it on the client, or the server,
// or both.
Package.client_file('underscore.js');
Package.server_file('underscore.js');