aboutsummaryrefslogtreecommitdiff
path: root/node_modules/istanbul-lib-source-maps/lib/source-store.js
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-03-27 21:01:33 +0100
commitcc97a4dd2a967e1c2273bd5f4c5f49a5bf2e2585 (patch)
tree92c5d88706a6ffc654d1b133618d357890e7096b /node_modules/istanbul-lib-source-maps/lib/source-store.js
parent3771b4d6b67b34c130f3a9a1a15f42deefdb2eda (diff)
remove node_modules
Diffstat (limited to 'node_modules/istanbul-lib-source-maps/lib/source-store.js')
-rw-r--r--node_modules/istanbul-lib-source-maps/lib/source-store.js80
1 files changed, 0 insertions, 80 deletions
diff --git a/node_modules/istanbul-lib-source-maps/lib/source-store.js b/node_modules/istanbul-lib-source-maps/lib/source-store.js
deleted file mode 100644
index cb84e9ec8..000000000
--- a/node_modules/istanbul-lib-source-maps/lib/source-store.js
+++ /dev/null
@@ -1,80 +0,0 @@
-var util = require('util'),
- os = require('os'),
- path = require('path'),
- mkdirp = require('mkdirp'),
- rimraf = require('rimraf'),
- fs = require('fs');
-
-function SourceStore(/*opts*/) {
-}
-
-SourceStore.prototype.registerSource = function (/* filePath, sourceText */) {
- throw new Error('registerSource must be overridden');
-};
-
-SourceStore.prototype.getSource = function (/* filePath */) {
- throw new Error('getSource must be overridden');
-};
-
-SourceStore.prototype.dispose = function () {
-};
-
-function MemoryStore() {
- this.data = {};
-}
-
-util.inherits(MemoryStore, SourceStore);
-
-MemoryStore.prototype.registerSource = function (filePath, sourceText) {
- this.data[filePath] = sourceText;
-};
-
-MemoryStore.prototype.getSource = function (filePath) {
- return this.data[filePath] || null;
-};
-
-function FileStore(opts) {
- opts = opts || {};
- var tmpDir = opts.tmpdir || os.tmpdir();
- this.counter = 0;
- this.mappings = [];
- this.basePath = path.resolve(tmpDir, '.istanbul', 'cache_');
- mkdirp.sync(path.dirname(this.basePath));
-}
-
-util.inherits(FileStore, SourceStore);
-
-FileStore.prototype.registerSource = function (filePath, sourceText) {
- if (this.mappings[filePath]) {
- return;
- }
- this.counter += 1;
- var mapFile = this.basePath + this.counter;
- this.mappings[filePath] = mapFile;
- fs.writeFileSync(mapFile, sourceText, 'utf8');
-};
-
-FileStore.prototype.getSource = function (filePath) {
- var mapFile = this.mappings[filePath];
- if (!mapFile) {
- return null;
- }
- return fs.readFileSync(mapFile, 'utf8');
-};
-
-FileStore.prototype.dispose = function () {
- this.mappings = [];
- rimraf.sync(path.dirname(this.basePath));
-};
-
-module.exports = {
- create: function (type, opts) {
- opts = opts || {};
- type = (type || 'memory').toLowerCase();
-
- if (type === 'file') {
- return new FileStore(opts);
- }
- return new MemoryStore(opts);
- }
-};