mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-27 05:51:56 +07:00
17 lines
223 B
JavaScript
17 lines
223 B
JavaScript
export default class Transformer {
|
|
// Return true if anything was processed, false otherwise.
|
|
|
|
|
|
getPrefixCode() {
|
|
return "";
|
|
}
|
|
|
|
getHoistedCode() {
|
|
return "";
|
|
}
|
|
|
|
getSuffixCode() {
|
|
return "";
|
|
}
|
|
}
|