ax63.js
Use in your project
Use npm
npm i ax63.js
const ax63 = require('ax63.js');
console.log(ax63.a());
console.log(ax63.a(100));
console.log(ax63.a(63, true));
console.log(ax63.haritaso());
console.log(ax63.haritaso(true));
Use <script>
tag
<div id="ax63"></div>
<div id="haritaso"></div>
<script src="https://cdn.jsdelivr.net/npm/ax63.js@latest/dist/ax63.min.js"></script>
<script>
window.onload = function () {
document.getElementById("ax63").innerHTML =
ax63.a() + "<br>" +
ax63.a(100) + "<br>" +
ax63.a(63, true);
document.getElementById("haritaso").innerHTML =
ax63.haritaso() + "<br>" +
ax63.haritaso(true);
};
</script>
by jsDelivr.
Use ax63-CLI
npm i ax63.js -g
or
git clone https://github.com/ax63/ax63.js
cd ax63.js
npm install
npm link
Usage: ax63-cli [options]
Options:
-V, --version output the version number
-a, --a <number> Specify the number of "a" (Default: 63)
-c, --caps Use "A" (not "a")
--haritaso Add Haritaso
-h, --help output usage information