smarturl/ts/smarturl.classes.smarturl.ts

8 lines
154 B
TypeScript
Raw Normal View History

2021-04-12 19:18:36 +00:00
import * as plugins from './smarturl.plugins';
export class Smarturl {
public parseUrl(urlArg: string) {
2021-04-12 19:41:03 +00:00
return new plugins.url.URL(urlArg);
2021-04-12 19:18:36 +00:00
}
}