We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qjs
1 parent 43151dd commit d7c5c7cCopy full SHA for d7c5c7c
quickjs.c
@@ -26306,16 +26306,6 @@ static char *js_default_module_normalize_name(JSContext *ctx,
26306
int len;
26307
26308
if (name[0] != '.') {
26309
- /* Backwards compatibility for stdlib rename. */
26310
- static const char names[] = "qjs:bjson\0qjs:std\0qjs:os";
26311
- for (const char *p = names; p < endof(names); p += 1 + strlen(p)) {
26312
- if (!strcmp(name, p+4)) {
26313
-#ifndef NDEBUG
26314
- printf("WARN: Standard library modules should be prefixed with `qjs:`. Example: %s\n", p);
26315
-#endif
26316
- return js_strdup(ctx, p);
26317
- }
26318
26319
/* if no initial dot, the module name is not modified */
26320
return js_strdup(ctx, name);
26321
}
0 commit comments