-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
419 lines (359 loc) · 11.2 KB
/
demo.html
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
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!DOCTYPE html>
<html>
<head>
<title></title>
<!--<script>-->
<!--function define() {-->
<!---->
<!--}-->
<!--define.amd = true;-->
<!--</script>-->
<script type="text/javascript" src="./src/underscore.js"></script>
<script type="text/javascript">
// var property = function(key) {
// return function(obj) {
// return obj == null ? void 0 : obj[key];
// };
// };
// // Helper for collection methods to determine whether a collection
// // should be iterated as an array or as an object.
// // Related: http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength
// // Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094
// var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1;
// var getLength = property('length');
// // 判断是否为数组或者类数组(具有length属性且值为Number类型同时值大于等于0)
// // [1,2] => true
// // {name:'zhuxy',length:10} => true
// // {name:'zhuxy'} => false
// // {name:'zhuxy',length:'10'} => false
// // {name:'zhuxy',length:-10} => false
// var isArrayLike = function(collection) {
// // 类似 obj.length
// // 正常写法:
// // var length = collection == null ? void 0: collection.length;
// var length = getLength(collection);
// return typeof length == 'number' && length >= 0 && length <= MAX_ARRAY_INDEX;
// };
// // console.log(isArrayLike([]))
// // console.log(_.last([1,2,3],2));
// var sum = _.reduce([3,10,39], function(memo, num){ return memo + num; });
// // var even = _.find([1, 2, 3, 4, 5, 6], function(num){ return num % 2 == 0; });
// // var even = _.find({age:'zhuxy',name:'weiqq'}, function(item){ return item == 'zhuxy'; });
// var evens = _.filter([1, 2, 3, 4, 5, 6], function(num){ return num % 2 == 0; });
// var odds = _.reject([1,2,3,4,5,6],function(num){ return num % 2 == 0});
// // console.log(odds)
// var createReduce = function(dir){
// var reducer = function(obj,iteratee,memo,initial){
// var keys = !isArrayLike(obj) && _.keys(obj);
// length = (keys || obj).length,
// index = dir > 0 ? 0 : length - 1;
// if(!initial){
// memo = obj[keys ? keys[index] : index];
// index += dir;
// }
// for(; index >= 0 && index < length ; index += dir){
// var currentKey = keys ? keys[index] : index;
// memo = iteratee(memo,obj[currentKey],currentKey,obj);
// }
// return memo;
// };
// return function(obj,iteratee,memo,context){
// var initial = arguments.length >= 3;
// return reducer(obj,optimizeCb(iteratee,context,4),memo,initial);
// };
// }
// _.has = function(obj,key){
// return obj != null && hasOwnProperty.call(obj,key);
// }
// _.invoke([[5, 1, 7], [3, 2, 1]], 'sort');
// console.log(_.values({name:'zhuxy',age:20}))
// var createAssinger = function(keyFunc,defaults){
// return function(obj){
// var length = arguments.length;
// if(defaults){
// obj = Object(obj);
// }
// if(length < 2 || obj == null){
// return obj;
// }
// for(var index = 1; index < length; index++){
// var source = arguments[index],
// keys = keyFunc(source);
// l = keys.length;
// for(var i = 0; i < l; i++){
// var key = keys[i];
// if(!defaults || obj[key] == void 0){
// obj[key] = source[key];
// }
// }
// }
// }
// }
// var stooges = [{name: 'moe', age: 40},{name: 'moe', age: 49}, {name: 'larry', age: 50}, {name: 'curly', age: 60}];
// var isMatcher = _.matcher({name:'moe'})({name:'moe'});
// var isMatch = _.isMatch(null,0);
// var isMatch = _.isMatch({name:'moe',age:40},{name:'moe',age:30});
// _.keys({name:'zhuxy'});
// function Person(name,age){
// this.name = name;
// this.age = age;
// }
// Person.prototype.show = function(){
// }
// var p1 = new Person('zhuxy',30);
// // var isMatch = _.isMatch(null,p1);
// console.log('for in:')
// for(var i in p1){
// console.log(i);
// }
// console.log('Object.keys:' + Object.keys(p1))
// console.log(isMatch)
// console.log(_.pluck(stooges, 'name'))
// console.log(_.where(stooges,{name:'moe'}))
// var user = {name:'zhuxy',age:10};
// var xx = _.defaults('',{hobby:'basketball'})
//
// function add(a,b) {
// return a + b;
// }
//
// function add2(b) {
// return add(2,b);
// }
//
// console.log(add2(10));
//
//
// console.log(_.matcher({name:'zhuxy'})({name:'zhuxy'}))
// console.log(_.extend({name:{user:'zhuxy',hobby:'bs'},age:20},{name:{user:'weiqq'},age:40}))
// var key = _.findKey({user:'zhuxy',age:20,name:'zhuxy'},function(value,key,obj){
// return value == 'zhuxy';
// });
// console.log(key);
// _.values({one: 1, two: 2, three: 3});
//
// _.mapObject({start: 5, end: 12}, function(val, key) {
// return val + 5;
// });
//
// function xxx() {
//
// }
// console.log(_.isObject(xxx));
//
// var prevUnderscore = window._;
//
// _.noConflict = function () {
// window._ = prevUnderscore;
// return this;
// }
// console.log(_.constant(10)());
//
// let arr = [1,2,3,5];
//
// let getLen = _.property('length');
//
// console.log(getLen(arr));
// var a = [null, null, [1,2,3], null, [10, 12], null,undefined,false,'',' '];
// console.log(a.filter(_.identity));
//
// console.log(_.filter(a,_.identity));
//
// console.log(a.filter(function (val) {
// return val;
// }))
// let arr = [1,2,false,'',undefined,null,0];
// console.log(_.compact(arr))
// let arr = [1,2,false,'',undefined,null,0];
//
// arrfilter = arr.filter(function(value){
// return value;
// });
// console.log(arrfilter)
//
//
// let obj = {name:'zhuxy',age:25};
// let obj1 = {name:'zhuxy',age:26};
// let obj2 = {name:'zhuxy',age:27};
// let obj3
//
// let getName = _.property('name');
// console.log(getName(obj3));
// console.log(obj3['name']);
//console.log(_.propertyOf(null)('name'))
// console.dir(_.times(-1,function (i) {
// return i*2
// }))
// console.dir(_(2).times(function (i) {
// return i;
// }));
// // console.log(_.random(-10));
// console.log(_.escape('<div>html</div>'));
//
// var createEscaper = function(map) {
// var escaper = function(match) {
// return map[match];
// };
// // Regexes for identifying a key that needs to be escaped.
// // 正则用来识别需要被转义的key
// // (?:&|<|>|"|'|`)
// // (?:&|<|>|"|'|`)
// // (?:x) 匹配 x 不会捕获匹配项。这被称为非捕获括号(non-capturing parentheses)。
// // 匹配项不能够从结果数组的元素 [1], ..., [n] 或已被定义的 RegExp 对象的属性 $1, ..., $9 再次访问到。
// var source = '(?:' + _.keys(map).join('|') + ')';
// var testRegexp = RegExp(source);
// var replaceRegexp = RegExp(source, 'g');
// return function(string) {
// string = string == null ? '' : '' + string;
// return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string;
// };
// };
//
// var numMap = {
// 1:'I',
// 2:'love',
// 3:'you'
// }
//
// var reg = new RegExp(Object.keys(numMap).join('|'),'g');
// var str = '123';
//
// var newStr = str.replace(reg,function(match){
// return numMap[match];
// });
//
// console.log(newStr);
// var object = {cheese: 'crumpets', stuff: function(){ return this.cheese; }};
// var cheese = 'global cheese';
// var xx = object.stuff;
// console.log(xx());
// console.log(_.result(object, 'xx'));
// function uniqueId(prefix) {
// var id = 0,
// prefix = prefix ? prefix + '' : '';
// return function () {
// return prefix + ++id;
// }
// }
// var stooges = [{name: 'curly', age: 25}, {name: 'moe', age: 21}, {name: 'larry', age: 23}];
//
// var users = {
// name:'zhuxy',
// hobby:'basketball'
// };
// var youngest = _(stooges)
// .sortBy(function(stooge){ return stooge.age; })
// .map(function(stooge){ return stooge.name + ' is ' + stooge.age; })
// .first()
// .value();
// console.log(youngest);
// var newM = _.chain([1, 2, 3]).map(function(n){ return n * 2; }).value();
// console.log(newM);
//
// _.prototype.value = function () {
// return this._wrapped;
// }
// _.pairs({one: 1, two: 2, three: 3});
// var obj = {
// name:'zhuxy',
// showName:function () {
// console.log(this.name);
// },
// a:function () {
//
// },
// b:function () {
//
// }
// }
//
// _.functions(obj);
//
// var key = _.findKey({name:'zhuxy',age:10},function (value, key, obj) {
// console.log(value,key,obj);
// return value == 10;
// })
//
// console.log(key)
// _.pick({name: 'moe', age: 50, userid: 'moe1'}, 'name', 'age');
// console.log(_.extend(null))
//
// console.log(_.extend({name:'zhuxy'},{name:'weiqq'}));
// var obj = {name:'zhuxy',age:'25',hobby:[1,2,3]}
//
// var obj2 = _.clone(obj);
//
// console.log(obj2);
// var val = _.chain([1,2,3,200])
// .filter(function(num) { return num % 2 == 0; })
// .tap(function(value){
// value = [0,0]
// return value;
// })
// .map(function(num) { return num * num })
// .value();
// console.log(val);
// console.log(_.isMatch({name:'zhuxy',age:10},{age:10}));
// console.log(_.matcher({name:'zhuxy'})({name:'zhuxy',age:10}))
// console.log(_.isMatch(null,''))
// _.matcher = function(attr){
// return function(obj){
// return _.isMatch(obj,attr);
// }
// }
// var func = function(greeting){ return greeting + ': ' + this.name };
// func = _.bind(func, {name: 'moe'}, 'hi');
// func();
//
// var subtract = function(a,b){return b - a;};
//
// sub5 = _.partial(subtract,5);
//
// console.log(sub5(20));
// var throttled = _.throttle(updatePosition, 1000);
// window.onscroll = throttled;
// function updatePosition() {
// console.log(1)
// }
//// var debounced = _.debounce(updatePosition2,1000);
//// window.onscroll = debounced;
//// function updatePosition2() {
//// console.log(1)
//// }
//
// function handleVisibilityChange() {
// if (document.hidden) {
// document.title = 'hidden'
// console.log('hidden')
// } else {
// document.title = 'show'
// console.log('in')
// }
// }
//
// document.addEventListener("visibilitychange", handleVisibilityChange, false);
//
// var r = _.chunk([1,2,3,4,5],2);
// var isFalsy = _.negate(Boolean);
// _.find([-2, -1, 0, 1, 2], isFalsy);
_.templateSettings = {
}
let compiled = _.template("hello: <%= name %>zhuxy");
let str = compiled({name: 'moe'});
console.log(str)
// var __t,
// __p='',
// __j=Array.prototype.join,
// print = function(){
// __p += __j.call(arguments,'');
// };
// with(obj||{}){
// __p += 'hello: ' + (( __t=( name ) ) == null ? '' : __t ) + '';
// }
// return __p;
</script>
</head>
<body>
<div style="height:2000px;background-color: grey"></div>
</body>
</html>