mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2024-11-10 01:01:55 +01:00
6 lines
252 B
TypeScript
6 lines
252 B
TypeScript
|
import { writeFile } from 'fs';
|
||
|
|
||
|
import * as license from "../oss-attribution/licenseInfos.json";
|
||
|
|
||
|
const result = JSON.stringify(license, null, 2);
|
||
|
writeFile("../oss-attribution/licenseInfos.json", result, err => { if (err) return console.log(err) } );
|