├── .gitignore ├── LICENSE ├── README.rst ├── asmjs ├── index.html ├── luhn.c ├── luhn.js └── luhn.min.js ├── batavia ├── batavia.js ├── index.html └── luhn.py ├── brython ├── brython.js ├── index.html └── luhn.py ├── coffeescript ├── index.html ├── luhn.coffee ├── luhn.js ├── luhn.js.map └── package.json ├── index.html ├── javascript ├── index.html └── luhn.js ├── pyodide ├── index.html ├── luhn.js └── pyodide.js ├── transcrypt ├── __javascript__ │ ├── extra │ │ └── sourcemap │ │ │ ├── luhn.js.map │ │ │ ├── luhn.min.js.cascade.mapdump │ │ │ ├── luhn.min.js.map │ │ │ ├── luhn.mod.js.map │ │ │ └── luhn.shrink.js.map │ ├── luhn.js │ ├── luhn.min.js │ └── luhn.mod.js ├── index.html └── luhn.py └── wasm ├── index.html ├── luhn.c ├── luhn.js ├── luhn.min.js ├── luhn.wasm └── luhn.wat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/README.rst -------------------------------------------------------------------------------- /asmjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/asmjs/index.html -------------------------------------------------------------------------------- /asmjs/luhn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/asmjs/luhn.c -------------------------------------------------------------------------------- /asmjs/luhn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/asmjs/luhn.js -------------------------------------------------------------------------------- /asmjs/luhn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/asmjs/luhn.min.js -------------------------------------------------------------------------------- /batavia/batavia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/batavia/batavia.js -------------------------------------------------------------------------------- /batavia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/batavia/index.html -------------------------------------------------------------------------------- /batavia/luhn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/batavia/luhn.py -------------------------------------------------------------------------------- /brython/brython.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/brython/brython.js -------------------------------------------------------------------------------- /brython/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/brython/index.html -------------------------------------------------------------------------------- /brython/luhn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/brython/luhn.py -------------------------------------------------------------------------------- /coffeescript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/coffeescript/index.html -------------------------------------------------------------------------------- /coffeescript/luhn.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/coffeescript/luhn.coffee -------------------------------------------------------------------------------- /coffeescript/luhn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/coffeescript/luhn.js -------------------------------------------------------------------------------- /coffeescript/luhn.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/coffeescript/luhn.js.map -------------------------------------------------------------------------------- /coffeescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/coffeescript/package.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/index.html -------------------------------------------------------------------------------- /javascript/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/javascript/index.html -------------------------------------------------------------------------------- /javascript/luhn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/javascript/luhn.js -------------------------------------------------------------------------------- /pyodide/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/pyodide/index.html -------------------------------------------------------------------------------- /pyodide/luhn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/pyodide/luhn.js -------------------------------------------------------------------------------- /pyodide/pyodide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/pyodide/pyodide.js -------------------------------------------------------------------------------- /transcrypt/__javascript__/extra/sourcemap/luhn.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/transcrypt/__javascript__/extra/sourcemap/luhn.js.map -------------------------------------------------------------------------------- /transcrypt/__javascript__/extra/sourcemap/luhn.min.js.cascade.mapdump: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transcrypt/__javascript__/extra/sourcemap/luhn.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/transcrypt/__javascript__/extra/sourcemap/luhn.min.js.map -------------------------------------------------------------------------------- /transcrypt/__javascript__/extra/sourcemap/luhn.mod.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/transcrypt/__javascript__/extra/sourcemap/luhn.mod.js.map -------------------------------------------------------------------------------- /transcrypt/__javascript__/extra/sourcemap/luhn.shrink.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/transcrypt/__javascript__/extra/sourcemap/luhn.shrink.js.map -------------------------------------------------------------------------------- /transcrypt/__javascript__/luhn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/transcrypt/__javascript__/luhn.js -------------------------------------------------------------------------------- /transcrypt/__javascript__/luhn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/transcrypt/__javascript__/luhn.min.js -------------------------------------------------------------------------------- /transcrypt/__javascript__/luhn.mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/transcrypt/__javascript__/luhn.mod.js -------------------------------------------------------------------------------- /transcrypt/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/transcrypt/index.html -------------------------------------------------------------------------------- /transcrypt/luhn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/transcrypt/luhn.py -------------------------------------------------------------------------------- /wasm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/wasm/index.html -------------------------------------------------------------------------------- /wasm/luhn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/wasm/luhn.c -------------------------------------------------------------------------------- /wasm/luhn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/wasm/luhn.js -------------------------------------------------------------------------------- /wasm/luhn.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/wasm/luhn.min.js -------------------------------------------------------------------------------- /wasm/luhn.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/wasm/luhn.wasm -------------------------------------------------------------------------------- /wasm/luhn.wat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freakboy3742/web-without-javascript/HEAD/wasm/luhn.wat --------------------------------------------------------------------------------