mirror of
https://github.com/swc-project/swc.git
synced 2024-11-23 17:54:15 +03:00
10 lines
281 B
JavaScript
10 lines
281 B
JavaScript
const validate = require('sourcemap-validator');
|
|
const fs = require('fs');
|
|
|
|
const jsFile = process.argv[1];
|
|
const mapFile = process.argv[2];
|
|
|
|
const jsContent = fs.readFileSync(jsFile, 'utf-8');
|
|
const mapContent = fs.readFileSync(mapFile, 'utf-8');
|
|
|
|
validate(jsContent, mapContent); |