UNPKG

@knine-sdk/helpers

Version:

Helpers for Knine projects. Part of Knine JS SDK

12 lines (8 loc) 260 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const openWindow = (url) => { if (typeof window === 'undefined') return; window.open(url, '_blank', 'noopener,noreferrer'); }; exports.openWindow = openWindow;