mirror of
https://github.com/ragestudio/linebridge.git
synced 2025-06-09 10:34:17 +00:00
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
import fs from "node:fs"
|
|
import path from "node:path"
|
|
|
|
import Vars from "../vars"
|
|
|
|
export default () => {
|
|
return fs.existsSync(path.resolve(Vars.rootLibPath, ".experimental"))
|
|
}
|