Skip to content

Instantly share code, notes, and snippets.

@lovesunstar
lovesunstar / wk.bridge.js
Last active February 3, 2022 00:53
Provide a way to send event to native.
/* wk.bridge.min.js | v0.2 */
(function() {
if (window.isIOS) {
return
}
window.isIOS = function () {
return navigator && navigator.userAgent && (/(iPhone|iPad|iPod|iOS)/i.test(navigator.userAgent))
}
}());
/* wk.bridge.min.js | v0.3 */