philips-software/cogito

View on GitHub
workspaces/demo-app/src/services/documentation-loader/TextLoader.js

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
class TextLoader {
  static fromFile = async path => {
    const response = await fetch(path)
    return response.text()
  }
}

export { TextLoader }