UNPKG

235 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = newWindow;
7
8function newWindow(url, windowName, windowFeatures) {
9 window.open(url, windowName || 'new window', windowFeatures || '');
10}
\No newline at end of file