![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
explicit-window
Advanced tools
Converts explicit assignments to window into explicit assignments.
A small javascript-to-javascript compiler which converts (some) implicit assignments to window into explicit ones.
This is useful when using js-to-js compilers that wrap your code in a function expression, with code that assigns to window using mechanisms that only do so in the top scope.
It converts:
If there is anything I've missed, open up an issue.
npm install explicit-window
var explicitWindow = require('explicit-window');
var convertedFileContents = explicitWindow(fileContents);
The test/unit_cases
folder contains a set of inputs and outputs for the compiler. These inputs and outputs are themselves tests. The unit tests test whether the compiler maps each input to the corresponding output, and the integration tests test whether the assertions pass in both the inputs and outputs, when loaded into a browser. This hopefully ensures that the outputs have the same semantics as the inputs.
To run the unit tests, install mocha with
npm install -g mocha
then run mocha
.
To run the integration tests, open test/integration/test.html
in your browser. The tests pass if no errors are thrown when executing the page. I'll probably find a better way of testing this at sonme point.
FAQs
Converts explicit assignments to window into explicit assignments.
The npm package explicit-window receives a total of 5 weekly downloads. As such, explicit-window popularity was classified as not popular.
We found that explicit-window demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.