mirror of
https://github.com/ragestudio/relic.git
synced 2025-06-09 02:24:18 +00:00
9 lines
274 B
JavaScript
9 lines
274 B
JavaScript
import ManifestReader from "../manifest/reader"
|
|
import ManifestVM from "../manifest/vm"
|
|
|
|
export default async function softRead(manifest, options = {}) {
|
|
const Reader = await ManifestReader(manifest)
|
|
const VM = await ManifestVM(Reader.code, options)
|
|
|
|
return VM
|
|
} |