13 lines
290 B
Plaintext
13 lines
290 B
Plaintext
import { OpenSchema, CanOpenURL } from '../interface.uts'
|
|
|
|
export const openSchema : OpenSchema = function (url : string) : void {
|
|
location.href = url;
|
|
}
|
|
|
|
export const canOpenURL : CanOpenURL = function (url : string) : boolean {
|
|
if (url != "") {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|