Files
liquidjs/benchmark/index.ts
T
2019-10-10 09:35:15 +08:00

16 lines
276 B
TypeScript

import { output } from './output'
import { tag } from './tag'
import { demo } from './demo'
import { layout } from './layout'
import { memory } from './memory'
async function main () {
await output()
await tag()
await demo()
await layout()
await memory()
}
main()