UNPKG

kura

Version:

The FileSystem API abstraction library.

15 lines (13 loc) 416 B
/* eslint-disable */ const globalVar = typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : Function("return this;")(); if (!globalVar.TextDecoder || !globalVar.TextEncoder) { const TextEncodingShim = require("text-encoding-shim"); globalVar.TextDecoder = TextEncodingShim.TextDecoder; globalVar.TextEncoder = TextEncodingShim.TextEncoder; } /* eslint-enable */