mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
92971d3c87
* Update eslint-plugin-import version * Convert JS files to use ESM * Update ESLint rules to check imports * Fix test:unit:global command env * Cleanup mock-dev script
28 lines
462 B
JavaScript
28 lines
462 B
JavaScript
class WindowPlatform {
|
|
/**
|
|
* Reload the platform
|
|
*/
|
|
reload () {
|
|
/** @type {any} */ (global).location.reload()
|
|
}
|
|
|
|
/**
|
|
* Opens a window
|
|
* @param {{url: string}} opts - The window options
|
|
*/
|
|
openWindow (opts) {
|
|
/** @type {any} */ (global).open(opts.url, '_blank')
|
|
}
|
|
|
|
/**
|
|
* Returns the platform version
|
|
* @returns {string}
|
|
*/
|
|
getVersion () {
|
|
return '<unable to read version>'
|
|
}
|
|
|
|
}
|
|
|
|
export default WindowPlatform
|