UNPKG

esnextbin

Version:

Prototype JavaScript programs in the browser with ESNext (a.k.a ES2015) syntax and features, using modules from NPM.

15 lines (14 loc) 275 B
<!doctype html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <script> var code = window.location.toString().replace(/.+code=/, ''); window.opener.postMessage(code, window.location); window.close(); </script> </body> </html>