tiny-source-map

0.8.0 • Public • Published

tiny-source-map

A tiny implementation of SourceMapGenerator usable in ES Module, CommonJS, and Browser friendly formats

Inspired and extracted from require('source-map/lib/source-map-generator.js') of Mozilla's wonderful source-map library under BSD-3 license.

API

import tiny_source_map_generator from 'tiny-source-map'

// ...

const src_map = tiny_source_map_generator()

src_map.addMapping({
  generated:{line, column},
  original:{line, column},
  source,
  name,
})

src_map.setSourceContent(source, content)

src_map.toJSON()

src_map.toString()

License

BSD-3 Clause

Readme

Keywords

none

Package Sidebar

Install

npm i tiny-source-map

Weekly Downloads

0

Version

0.8.0

License

BSD-3-Clause

Unpacked Size

13.9 kB

Total Files

7

Last publish

Collaborators

  • shanewholloway