diff options
author | Jez Ng <me@jezng.com> | 2013-06-06 17:48:21 -0700 |
---|---|---|
committer | Jez Ng <me@jezng.com> | 2013-06-19 01:22:01 -0700 |
commit | 86e672a4371e57238fabdde3a35eeee03c8aa77f (patch) | |
tree | f4ec03ff2e181e10865b18865e522284d6a29f9f /tools/node_modules/source-map/lib/source-map.js | |
parent | 6d7fb083a86bd58317ff3ce0ecc2300934bb9076 (diff) |
Commit the source-map library.
Diffstat (limited to 'tools/node_modules/source-map/lib/source-map.js')
-rw-r--r-- | tools/node_modules/source-map/lib/source-map.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/node_modules/source-map/lib/source-map.js b/tools/node_modules/source-map/lib/source-map.js new file mode 100644 index 00000000..121ad241 --- /dev/null +++ b/tools/node_modules/source-map/lib/source-map.js @@ -0,0 +1,8 @@ +/* + * Copyright 2009-2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE.txt or: + * http://opensource.org/licenses/BSD-3-Clause + */ +exports.SourceMapGenerator = require('./source-map/source-map-generator').SourceMapGenerator; +exports.SourceMapConsumer = require('./source-map/source-map-consumer').SourceMapConsumer; +exports.SourceNode = require('./source-map/source-node').SourceNode; |