diff options
Diffstat (limited to 'node_modules/source-map-resolve/test/common.js')
-rw-r--r-- | node_modules/source-map-resolve/test/common.js | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/node_modules/source-map-resolve/test/common.js b/node_modules/source-map-resolve/test/common.js deleted file mode 100644 index 8616c171d..000000000 --- a/node_modules/source-map-resolve/test/common.js +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright 2014 Simon Lydell -// X11 (“MIT”) Licensed. (See LICENSE.) - -function u(url) { - return "code\n/*# sourceMappingURL=" + url + " */" -} - -function read(x) { - return function() { - return x - } -} - -function Throws(x) { - throw new Error(x) -} - -function identity(x) { - return x -} - -module.exports = { - u: u, - read: read, - Throws: Throws, - identity: identity -} |