I have a javascript file like this
// file demo.js
export function a(){
// TODO
}
export function b(){
// TODO
}
I want to get two files by swc
// a.js
export function a(){
// TODO
}
// b.js
export function b(){
// TODO
}
I have a javascript file like this
// file demo.js
export function a(){
// TODO
}
export function b(){
// TODO
}
I want to get two files by swc
// a.js
export function a(){
// TODO
}
// b.js
export function b(){
// TODO
}
Copyright © 2021 Jogjafile Inc.