3.0.1 • Published 2 years ago

load-source-map v3.0.1

Weekly downloads
129,049
License
MIT
Repository
github
Last release
2 years ago

load-source-map

Version npmBuild Status

Given a source file location, will load any referenced (or inline) source map.
Result is a SourceMapConsumer.

Installation

$ npm install --save load-source-map

Usage

var loadSourceMap = require('load-source-map')

loadSourceMap(__filename, function (err, sourcemap) {
  if (err) {
    throw err
  }

  if (!sourcemap) {
    // No source map found
    return
  }

  console.log(sourcemap.originalPositionFor({
    line: 3,
    column: 10,
  }))

  // { source: 'some-file.js',
  //   line: 2,
  //   column: 2,
  //   name: null }
})

License

MIT-licensed. See LICENSE.