![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.
This project is deprecated and is no longer maintained
atob-umd
is a Javascript UMD module for atob().
with Node.js
atob-umd
is available on NPM
You can install it with the following command:
npm install atob-umd
Browser globals and AMD
atob-umd
is available on Bower
To install it from Bower, just run
bower install atob-umd
Usage is pretty straightforward; in the following example, a function atob
is created to mimic the native function with the same name:
var atob = function (a) {
var umd = new Atob();
return umd.handle(a).b;
};
var res = atob('SGVsbG8gV29ybGQ=');
Then, res
will return Hello World
.
You also can download the whole project (and build it from its source; see below).
Either use git clone
command to get it:
git clone https://github.com/t1st3-deprecate/atob-umd.git
Or download the latest version of the whole project.
Then, get the dependencies of the project from both Bower and NPM:
npm install
bower install
First, see "Installation for development" above. Do not forget to get the dependencies!
Then, you also need to install Gulp globally to build the project.
npm install -g gulp
See more at the "Getting started with Gulp" page.
Once you got the dependencies and installed Gulp globally, to get info about the package from the command line, just run:
gulp info
You are now ready to build!
The source is located in the "src" folder; the built target is located in the "dist" folder.
To build, just run:
gulp build
Tests
To test, you can use either the npm test
command or the gulp test
command:
npm test
or
gulp test
Serve and livereload
You can also use the serve
task to load the html pages from ./test/
in your browser.
gulp serve
Once it has loaded the page in the browser, this task watches for any modification in the source. If changes happen in the source, the task automatically reloads the page in the browser (livereload).
This piece of code is triple-licensed: MIT / BSD / GPL licenses
FAQs
A UMD module for atob()
We found that atob-umd 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.