fix(core): update

This commit is contained in:
2021-04-12 19:18:36 +00:00
parent 3c609edf0a
commit 4d966147c4
9 changed files with 10847 additions and 458 deletions

View File

@ -1,3 +1 @@
import * as plugins from './smarturl.plugins';
export let standardExport = 'Hi there! :) This is an exported string';
export * from './smarturl.classes.smarturl';

View File

@ -0,0 +1,7 @@
import * as plugins from './smarturl.plugins';
export class Smarturl {
public parseUrl(urlArg: string) {
return plugins.url.parse(urlArg);
}
}

View File

@ -1,2 +1,4 @@
const removeme = {};
export { removeme };
// node native
import * as url from 'url';
export { url };