when I write `js("require('fs')").readFileSync` in...
# javascript
y
when I write
js("require('fs')").readFileSync
in kotlin, is there a way to tell what the return type is? The only document I can find is on nodejs, where it says a buffer is returned. However I don't know how to access that in kotlin
r