Buckets:
| /* | |
| MIT License http://www.opensource.org/licenses/mit-license.php | |
| Author Ivan Kopeykin @vankop | |
| */ | |
| ; | |
| const WebpackError = require("./WebpackError"); | |
| const makeSerializable = require("./util/makeSerializable"); | |
| class UnhandledSchemeError extends WebpackError { | |
| /** | |
| * @param {string} scheme scheme | |
| * @param {string} resource resource | |
| */ | |
| constructor(scheme, resource) { | |
| super( | |
| `Reading from "${resource}" is not handled by plugins (Unhandled scheme).` + | |
| '\nWebpack supports "data:" and "file:" URIs by default.' + | |
| `\nYou may need an additional plugin to handle "${scheme}:" URIs.` | |
| ); | |
| this.file = resource; | |
| /** @type {string} */ | |
| this.name = "UnhandledSchemeError"; | |
| } | |
| } | |
| makeSerializable( | |
| UnhandledSchemeError, | |
| "webpack/lib/UnhandledSchemeError", | |
| "UnhandledSchemeError" | |
| ); | |
| module.exports = UnhandledSchemeError; | |
Xet Storage Details
- Size:
- 857 Bytes
- Xet hash:
- 3f5b29f5b726f85466af1017d44a19be9083833335c235657c78c2f9fa03e1be
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.