source-map-to-comment

Convert a Source Map object to a comment

MIT 4 个版本
安装
npm install source-map-to-comment
yarn add source-map-to-comment
pnpm add source-map-to-comment
bun add source-map-to-comment
README

source-map-to-comment

Convert a Source Map object to a comment

Install

$ npm install source-map-to-comment

Usage

import sourceMapToComment from 'source-map-to-comment';

const sourceMap = getSourceMapObjectFromSomething();

sourceMapToComment(sourceMap);
//=> '//# sourceMappingURL=data:application/json;base64,eyJ2Z...'

sourceMapToComment(JSON.stringify(sourceMap));
//=> '//# sourceMappingURL=data:application/json;base64,eyJ2Z...'

sourceMapToComment(sourceMap, {type: 'css'});
//=> '/*# sourceMappingURL=data:application/json;base64,eyJ2Z... */'
版本列表
3.0.0 2021-08-09
2.0.0 2019-05-30
1.1.0 2016-04-04
1.0.0 2015-02-16