Does deno have any features that allow you to intercept the loading of a module that's included via import
?
That is -- in Node.js programmers can redefine the require in order to intercept the loading of CommonJS modules. Node.js also features experimental loaders that allow you to intercept ES6 module loading.
Does deno have anything similar to this for its stock module loader (i.e. for import
)? If not, are there plans for anything like this in deno, or does the project's philosophy stand opposed to this sort of thing?