JSFiddle - React, Tailwind, and code Playground

by zzzzBov

JavaScript

(function () {
    "use strict";
    Math.truncate = function (n) {
        n = +n;
        return Math[n < 0 ? 'ceil' : 'floor'](n);
    };
    Array.range = function (m, n, o) {
        switch (arguments.length) {
            case 0:
                return [];
            case 1:
                
        }
    };
}());