List of useful npx (NPM Package Runner) commands.
Using NPX we can execute/run node binaries without the need to install it locally or globally.
List of useful npx (NPM Package Runner) commands.
Using NPX we can execute/run node binaries without the need to install it locally or globally.
| /** | |
| * Toggle fullscreen function who work with webkit and firefox. | |
| * @function toggleFullscreen | |
| * @param {Object} event | |
| */ | |
| function toggleFullscreen(event) { | |
| var element = document.body; | |
| if (event instanceof HTMLElement) { | |
| element = event; |