forked from jashkenas/underscore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
38 lines (30 loc) · 977 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
Uncomment this exports line if you want to be able to
use underscore as advertised
USAGE:
var seed = require('seed');
seed.require('underscore');
*/
// ..........................................................
// FULL DEVELOPMENT VERSION
//
// exports._ = module.exports = require('./underscore')._;
// ..........................................................
// MINIFIED VERSION
//
// exports._ = module.exports = require('./underscore-min')._;
/*
The following exports line allows you to set the underscore
functions to a var of your choosing.
USAGE:
var seed = require('seed');
var Underscore = seed.require('underscore');
*/
// ..........................................................
// FULL DEVELOPMENT VERSION
//
// exports = module.exports = require('./underscore')._;
// ..........................................................
// MINIFIED VERSION
//
exports = module.exports = require('./underscore-min')._;