Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

@volar/source-map

Package Overview
Dependencies
1
Maintainers
1
Versions
365
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @volar/source-map

Provides functionality related to source maps.


Version published
Maintainers
1
Created

Changelog

Source

2.2.5 (2024-05-23)

Features

  • source-map: add API to support generated code with different length than original code #183 - Thanks @piotrtomiak

Readme

Source

@volar/source-map

Provides functionality related to source maps.

API

This package exports a SourceMap class with the following methods:

  • getSourceOffset(generatedOffset: number): Returns the source offset for a given generated offset.

  • getGeneratedOffset(sourceOffset: number): Returns the generated offset for a given source offset.

  • getSourceOffsets(generatedOffset: number): Returns all source offsets for a given generated offset.

  • getGeneratedOffsets(sourceOffset: number): Returns all generated offsets for a given source offset.

Data Structures

Mapping

The Mapping is a tuple that represents a mapping in the source map. It consists of the following elements:

  • source: A string representing the source file. This can be undefined.
  • sourceOffsets: Offsets in the source code.
  • generatedOffsets: Offsets in the generated code.
  • data: The data associated with this mapping. The type of this data is generic and can be specified when creating a SourceMap instance.

Here is an example of a Mapping:

let mapping: Mapping<MyDataType> = {
    source: '.../sourceFile.ts',
    sourceOffsets: [10],
    generatedOffsets: [30],
	lengths: [10],
    data: myData,
};

In this example, myData is of type MyDataType, which is the type specified for the SourceMap instance.

Remember to replace MyDataType and myData with actual types and data that are relevant to your project.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

FAQs

Last updated on 23 May 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc