forked from webVueBlog/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JS方法源码实现.js
188 lines (149 loc) · 3.84 KB
/
JS方法源码实现.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// typeof
function _typeof(value) {
if (value === null) {
return 'null';
}
return typeof value === 'object' ? {
'[object Object]': 'Object',
'[object Array]': 'Array',
'[object Number]': 'Number',
'[object String]': 'String',
'[object Boolean]': 'Boolean'
}[({}).toString.call(value)] : typeof value;
}
/**
* input 输入框,监听它的input事件
*
* onfocus: 获取焦点时触发
* onblur: 失去焦点时触发
* onchange: 失去焦点并且value发生变化时触发
* onkeydown: 按下按键时触发
* onkeyup: 按键抬起的触发
* onclick: 主要用于 type = button,作为按钮的点击事件
* onselect: input 里的内容文本被选中,选中部分文本也会触发
* oninput: input 中的value值发生变化时触发
*/
// 浅拷贝
function clone(origin, target) {
var tar = target || {};
for (var k in origin) {
if (origin.hasOwnProperty(k)) {
tar[k] = origin[k];
}
}
return tar;
}
// 深拷贝
function isArray(target) {
return Object.prototype.toString.call(target) === '[object Array]';
}
function isObject(target) {
return typeof target === 'object' && target !== null;
}
/**
* @description 深拷贝(对象)
* @param {object} origin - 源对象
* @param {object} target - 目标对象
* @returns {object}
*/
function deepClone(origin, target) {
var tar = target || {};
for (var k in origin) {
if (origin.hasOwnProperty(k)) {
if (isObject(origin[k])) {
tar[k] = isArray(origin[k]) ? [] : {};
deepClone(origin[k], tar[k]);
} else {
tar[k] = origin[k];
}
}
}
return tar;
}
// new
/**
* @description 自定义实现 new 关键字
* 生成 this 指向,包含属性及 __proto__
* 构造函数如果返回对象,new 出的实例也返回对象,否则返回构造的 this 对象
*/
function $new() {
var constructor = [].shift.call(arguments),
_this = {};
_this.__proto__ = constructor.prototype;
var res = constructor.apply(_this, arguments);
return $typeof(res) === 'Object' ? res : _this;
}
// instanceof
/**
* @description 判断 target 是否是 type 的实例
* @param {any} target
* @param {any} type
* @returns {boolean}
*/
function $instanceof(target, type) {
var p = target;
while (p) {
if (p === type.prototype) {
return true;
}
p = p.__proto__;
}
return false;
}
// Object.create
/**
* @description 以提供的原型创建新对象
* @param {objejct} proto
* @returns {object}
*/
Object.prototype.$create = function (proto) {
function Buffer() { };
Buffer.prototype = proto;
Buffer.prototype.constructor = Buffer;
return new Buffer();
}
// call / apply / bind
/**
* @description 自定义实现 call
* @param {object} ctx - 上下文
* @returns {any}
*/
Function.prototype.$call = function (ctx) {
ctx = ctx ? Object(ctx) : window;
ctx.originFn = this;
var args = [];
for (var i = 1; i < arguments.length; i++) {
args.push('arguments[' + i + ']');
}
var ret = eval(' ctx.originFn(' + args + ')');
delete ctx.originFn;
return ret;
}
/**
* @description 自定义实现 apply
* 只取到第二个参数, 后面的参数忽略;
* 第二个参数: string、number、boolean、symbol -> reateListFromArrayLike called on non-object;
* 第二个参数: {}、fn、null、undefined -> arguments -> length 0;
* 第二个参数: [] -> 实参列表;
* @param {object} ctx - 上下文
* @param {array} args - 参数列表
* @returns {any}
*/
Function.prototype.$apply = function (ctx, args) {
ctx = ctx ? Object(ctx) : window;
ctx.originFn = this;
if (
typeof args === 'string' ||
typeof args === 'number' ||
typeof args === 'boolean' ||
typeof args === 'symbol'
) {
throw new TypeError(' CreateListFromArrayLike called on non-object');
}
if ($typeof(args) !== 'Array') {
return ctx.originFn();
}
var ret = eval('ctx.originFn(' + args + ')');
delete ctx.originFn;
return ret;
}