Skip to content

Instantly share code, notes, and snippets.

View at15four2020's full-sized avatar
๐Ÿ“†
The time is going

Fifteen Four at15four2020

๐Ÿ“†
The time is going
View GitHub Profile
var STYLE = 0
// 0 : WHITE
// 3 : RED
// 4 : BLUE
// 5 : YELLOW
// 6 : GREEN
// 7 : GREY
// 8 : MAGIC? WORK
// 9 : ZOMBIE ARM WORK
// 10 : SKELETON WORK
@at15four2020
at15four2020 / js-timeout-polyfill.js
Last active May 20, 2020 01:48 — forked from kayhadrin/js-timeout-polyfill.js
Nashorn setTimeout polyfill
/**
* js-timeout-polyfill
* @see https://blogs.oracle.com/nashorn/entry/setinterval_and_settimeout_javascript_functions
*/
(function (global) {
'use strict';
if (global.setTimeout ||
global.clearTimeout ||
global.setInterval ||