-
Notifications
You must be signed in to change notification settings - Fork 12
/
ce.js
9492 lines (8420 loc) · 547 KB
/
ce.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
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
本檔案為自動生成,請勿手動編輯!
This file is auto created from _structure/structure.js, base.js, module.js, dependency_chain.js, initialization.js
by auto-generate tool: build.nodejs(.js) @ 2024.
*/
'use strict';
if (typeof CeL !== 'function') {
/**
* <code>
TODO
將 module_name 改成 arguments
http://threecups.org/?p=129
http://cdnjs.com/
listen language change event
play board
use <a href="http://prototyp.ical.ly/index.php/2007/03/01/javascript-design-patterns-1-the-singleton/" accessdate="2010/4/25 0:23" title="prototyp.ical.ly &raquo; Javascript Design Patterns - 1. The Singleton">Singleton pattern</a>,
Module 模式或單例模式(<a href="http://zh.wikipedia.org/wiki/%E5%8D%95%E4%BE%8B%E6%A8%A1%E5%BC%8F" accessdate="2010/4/25 0:25" title="单例模式">Singleton</a>)<a href="http://www.comsharp.com/GetKnowledge/zh-CN/TeamBlogTimothyPage_K950.aspx" accessdate="2010/4/25 0:24" title="那些相见恨晚的 JavaScript 技巧 - 基于 COMSHARP CMS">為 Douglas Crockford 所推崇</a>,並被大量應用在 Yahoo User Interface Library YUI。
http://wiki.forum.nokia.com/index.php/JavaScript_Performance_Best_Practices
http://ioio.name/core-javascript-pitfalls.html
CommonJS
http://www.heliximitate.cn/studyblog/archives/tag/commonjs
</code>
*/
/**
* <code>
// TODO
// 2011/7/31 21:18:01
//module
//typeof CeL_id === 'string' && typeof this[CeL_id] === 'function' &&
typeof CeL === 'function' && CeL.run({
name:[module_name],
require:[function_name,module_name],
code:function(CeL){
var private_value=1;
function module_function_1(arg) {
;
}
module_function_1.required='';
function module_class_1(arg) {
;
}
function get_value(){
return private_value;
}
module_class_1.prototype.print=function(){};
module_class_1.print=function(){};
return {module_function_1,module_class_1};
}
});
</code>
*/
// void(
// typeof CeL !== 'function' &&
(
/**
* We can redefine native values only for undefined.<br />
* http://weblogs.asp.net/bleroy/archive/2006/08/02/Define-undefined.aspx<br />
* <br />
* Will speed up references to undefined, and allows redefining its name. (from
* jQuery)<br />
* <br />
* 用在比較或是 return undefined<br />
* 在舊的 browser 中,undefined 可能不存在。
*/
function (globalThis) {
if (false)
if (typeof globalThis !== 'object' && typeof globalThis !== 'function')
throw new Error('No globalThis object specified!');
var
// https://developers.google.com/closure/compiler/docs/js-for-compiler
/** @const */ library_name = 'CeL',
/**
* library version.
*
* @type {String}
* @ignore
*/
library_version = '4.5.9',
/**
* default debug level
*
* @type {ℕ⁰:Natural+0}
* @ignore
*/
debug = 0,
// 原生 console。
// typeof console !== 'undefined' && console
has_console = typeof console === 'object'
//
&& (typeof console.log === 'function'
// in IE 8, typeof console.log === 'object'.
|| typeof console.log === 'object')
&& typeof console.error === typeof console.log
&& typeof console.trace === typeof console.log,
old_namespace,
// default not_native_keyword.
// @inner
// const
KEY_not_native = typeof Symbol === 'function' ? Symbol('not_native') : 'not_native',
// _base_function_to_extend,
function_name_pattern;
// members of library -----------------------------------------------
// define 'undefined'
try {
// undefined === void 0
if (undefined !== undefined) {
throw new Error('Invalid undefined');
}
// eval('if(undefined!==undefined){throw new Error('Invalid
// undefined');}');
} catch (e) {
// Firefox/49.0 WebExtensions 可能 throw:
// Error: call to eval() blocked by CSP
// @see
// https://developer.mozilla.org/en-US/docs/Archive/Firefox_OS/Firefox_OS_apps/Building_apps_for_Firefox_OS/CSP
// or: undefined=void 0
if (e === 1)
eval('undefined=this.undefined;');
}
try {
old_namespace = globalThis[library_name];
} catch (e) {
// throw { message: '' };
throw new Error(library_name + ': Cannot get the global scope object!');
}
if (false) {
_Global.JustANumber = 2;
var _GlobalPrototype = _Global.constructor.prototype;
_GlobalPrototype.JustANumber = 2;
}
// 若已經定義過,跳過。因為已有對 conflict 的對策,因此跳過。
if (false)
if (globalThis[library_name] !== undefined)
return;
/**
* Will speed up references to DOM: window, and allows redefining its name.
* (from jQuery)
*
* @ignore
*/
// window = this;
/**
* 本 JavaScript framework 的框架基本宣告。<br />
* base name-space declaration of JavaScript library framework
*
* @name CeL
* @class Colorless echo JavaScript kit/library: library base name-space
*/
function _() {
/**
* function CeL: library root<br />
* declaration for debug
*/
// this.globalThis = arguments[0] || arguments.callee.ce_doc;
// return new (this.init.apply(globalThis, arguments));
};
// if (typeof _.prototype !== 'object')
_// JSDT:_module_
.
/**
* framework main prototype definition for JSDT: 有 prototype 才會將之當作 Class
*/
prototype = {
};
// _.library_version =
_.version = library_version;
_.build_date = new Date("2024-09-14T00:10:52.352Z");
// name-space 歸屬設定
_// JSDT:_module_
.
get_old_namespace = function () {
return old_namespace;
};
_// JSDT:_module_
.
recover_namespace = function () {
if (old_namespace === undefined)
delete globalThis[library_name];
else
globalThis[library_name] = old_namespace;
return _;
};
_// JSDT:_module_
.
/**
* JavaScript library framework main class name.
*
* @see <a
* href="http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf">ECMA-262</a>:
* Object.Class: A string value indicating the kind of this object.
* @constant
*/
Class = library_name;
var is_WWW = typeof window === 'object'
&& (globalThis === window
// 2021/11/16 e.g., under https://web.archive.org/
// `window is {Proxy} of `globalThis`
|| window.window === window && _ === window[library_name])
// 由條件嚴苛的開始。
&& typeof navigator === 'object'
// Internet Explorer 6.0 (6.00.2900.2180),
// Internet Explorer 7.0 (7.00.5730.13) 中,
// navigator === window.navigator 不成立!
&& navigator == window.navigator
&& typeof location === 'object'
&& location === window.location
// object || function
&& typeof setTimeout !== 'undefined'
&& setTimeout === window.setTimeout
&& typeof document === 'object'
&& document === window.document
// 下兩個在 IE5.5 中都是 Object
// && _.is_type(window, 'globalThis')
// && _.is_type(document, 'HTMLDocument')
// && navigator.userAgent
,
is_W3CDOM =
is_WWW
// W3CDOM, type: Object @ IE5.5
&& document.createElement
// &&!!document.createElement
// type: Object @ IE5.5
&& document.getElementsByTagName;
_// JSDT:_module_
.
/**
* Are we in a web environment?
*
* @param {Boolean}
* W3CDOM Test if we are in a World Wide Web Consortium (W3C)
* Document Object Model (DOM) environment.
*
* @return We're in a WWW environment.
*
* @since 2009/12/29 19:18:53
* @see use lazy evaluation / lazy loading
* @_memberOf _module_
*/
is_WWW = function (W3CDOM) {
return W3CDOM ? is_W3CDOM : is_WWW;
};
_// JSDT:_module_
.
/**
* 本 library 專用之 evaluate()。
*
* 若在 function 中 eval 以獲得 local variable,在舊 browser 中須加 var。<br />
* e.g., 'var local_variable=' + ..<br />
* 不加 var 在舊 browser 中會變成 global 變數。
*
* @param {String}code
* script code to evaluate
*
* @returns value that evaluate process returned
* @see window.eval === window.parent.eval
* http://stackoverflow.com/questions/3277182/how-to-get-the-global-object-in-javascript
* http://perfectionkills.com/global-eval-what-are-the-options/
*/
eval_code = globalThis.execScript ?
function (code) {
// 解決 CeL.run() 在可以直接取得 code 的情況下,於舊版 JScript 可能會以 eval() 來 include,
// 這將造成 var 的值不會被設定到 global scope。
// use window.execScript(code, "JavaScript") in JScript:
// window.execScript() 將直接使用全局上下文環境,
// 因此,execScript(Str)中的字符串Str可以影響全局變量。——也包括聲明全局變量、函數以及對象構造器。
// window.execScript doesn’t return a value.
return globalThis.execScript(code, "JavaScript");
}
:
function eval_code(code) {
/**
* JSC eval() takes an optional second argument which can be 'unsafe'.<br />
* Mozilla/SpiderMonkey eval() takes an optional second argument which
* is the scope object for new symbols.
*/
if (false) {
_.debug(globalThis.eval, 2);
_.debug(globalThis.eval && globalThis.eval !== arguments.callee);
}
// NO globalThis.eval.call(global, code) :
// http://perfectionkills.com/global-eval-what-are-the-options/
// TODO: 似乎不總是有用。見 era.htm。
return globalThis.eval && globalThis.eval !== eval_code ? globalThis.eval(code)
// QuickJS 2020-04-12 必須把本段註解全部刪除,否則不能正常執行。應為 bug。
// 這種表示法 Eclipse Kepler (4.3.2) SR2 之 JsDoc 尚無法處理。
: (0, eval)(code);
};
try {
_// JSDT:_module_
.
/**
* evaluate @ Global scope.<br />
*
* By the ECMA-262, new Function() will 'Pass in the Global Environment
* as the Scope parameter.'<br />
*
* copy from jQuery core.js
*
* @param {String}code
* script code to evaluate
*
* @returns value that evaluate process returned
* @see <a
* href="http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context"
* accessdate="2011/8/6 8:56">Eval JavaScript in a global context |
* Java.net</a> use execScript on Internet Explorer
*/
global_eval = new Function('code', 'return '
+ (
typeof execScript === 'function' ? 'execScript('
: is_WWW ? 'window.eval(' : 'eval.call(null,'
)
+ 'code)');
} catch (e) {
// Firefox/49.0 WebExtensions 可能 throw:
// Error: call to Function() blocked by CSP
_.global_eval = function(code) {
_.error('global_eval: Cannot eval()!');
};
}
// 2019/6/3 18:16:44 CeL.null_Object() → Object.create(null)
if (typeof Object.create !== 'function') {
// https://developer.mozilla.org/zh-TW/docs/Web/JavaScript/Reference/Global_Objects/Object/create
// 先暫時給一個,用於 `Object.create(null)`。
(Object.create = function create(proto, propertiesObject) {
if (proto !== null
&& typeof proto !== "object"
&& typeof proto !== "function") {
throw TypeError("Object prototype may only be an Object or null: " + proto);
}
// new Object();
var new_Object = {};
if (Object.setPrototypeOf && !Object.setPrototypeOf[KEY_not_native]) {
Object.setPrototypeOf(new_Object, proto);
} else {
new_Object.__proto__ = proto;
}
if(typeof propertiesObject === "object") {
Object.defineProperties(new_Object, propertiesObject);
}
return new_Object;
})[KEY_not_native] = true;
}
/**
* setup options. 前置處理 options,正規化 read-only 參數。
*
* @example<code>
// // 前導作業/前置處理。
// if (!library_namespace.is_Object(options))
// options = Object.create(null);
// →
// options = library_namespace.setup_options(options);
// options = library_namespace.setup_options(options, true);
* </code>
*
* @param {Object}[options]
* 附加參數/設定選擇性/特殊功能與選項。
* @param {Boolean}[new_one]
* 重新造出可被更改的選項。當會更改到options時,再設定此項。
*
* @returns {Object}選項。
*
* @since 2016/3/13 13:58:9
*/
function _setup_options(options, new_one) {
if (options && (!new_one || Array.isArray(options))) {
return options;
}
// create a new one. copy options.
// or use Object.clone(options)
options = Object.assign(Object.create(null), options);
// 註冊為副本。
options.new_NO = (options.new_NO | 0) + 1;
return options;
}
/**
* setup options. 前置處理 options,正規化並提供可隨意改變的同內容參數,以避免修改或覆蓋附加參數。<br />
* 僅用在<b>不會改變</b> options 的情況。
*
* @example<code>
// // 前導作業/前置處理。
// if (!library_namespace.is_Object(options))
// options = Object.create(null);
// →
// options = library_namespace.setup_options(options);
* </code>
*
* @param {Object}[options]
* 附加參數/設定選擇性/特殊功能與選項。
*
* @returns {Object}選項。
*
* @since 2016/3/13 13:58:9
*/
function setup_options(options) {
if (typeof options === 'string') {
// e.g., 'bot' → {bot:true}
// e.g., 'bot|minor' → {bot:true,minor:true}
var _options = Object.create(null), i = 0;
for (options = options.split('|'); i < options.length; i++) {
if (options[i]) {
_options[options[i]] = true;
}
}
return _options;
}
// e.g., number: Invalid option?
return (typeof options === 'object' /* || typeof options === 'function' */)
// typeof null === 'object'
&& options || Object.assign(Object.create(null), options);
}
/**
* setup options. 前置處理 / clone options,避免修改或覆蓋附加參數。<br />
* 重新造出可被更改的選項。當會更改到 options 時,再使用此函數。
*
* @example<code>
// 前導作業/前置處理。
// 重新造一個 options 以避免污染。
if (!library_namespace.is_Object(options))
options = Object.create(null);
// →
options = library_namespace.new_options(options);
// 使用新語法。
options = { ...options };
</code>
*
* @param {Object}[options]
* 附加參數/設定選擇性/特殊功能與選項。
*
* @returns {Object}選項。
*
* @since 2016/03/14 16:34:09
*/
function new_options(options) {
// create a new one. copy options.
// or use Object.clone(options)
var length = arguments.length;
if (_.is_Object(options)) {
if ((new_options.new_key in options) && length === 1) {
// converted
return options;
}
options = Object.assign(Object.create(null), options);
} else {
options = Object.create(null);
}
if (length > 1) {
for(var i = 1; i < length; i++)
// if (_.is_Object(arguments[i]))
if (arguments[i])
Object.assign(options, arguments[i]);
}
Object.defineProperty(options, new_options.new_key, {
// let [new_options.new_key] deletable
configurable : true,
// 不允許 enumerable 以避免此屬性被使用。
// enumerable : false
value : true
});
return options;
}
new_options.new_key = 'is new options';
// 不會更動 options 的用此。
_.setup_options = setup_options;
// 會更動 options 的用此。
_.new_options = new_options;
var modify_function_hash = Object.create(null);
_// JSDT:_module_
.
/**
* simple evaluates to get the value of specified variable identifier name.
*
* 不使用 eval() 的方法,一層一層 call name-space。
*
* BUG: 無論是不是相同 name_space,只要 variable_name 相同,即會執行 modify_function。<br />
* 以記憶體空間換取時間效率,會增加記憶體空間之使用。
*
* 在兩個子層(a.b.c)下,這樣作效率較差@Chrome/5.0.375.29:<br />
* function(v){try{return(new Function('return('+v+')'))();}catch(e){}}
*
* TODO:<br />
* 不存在時 throw.
*
* @param {String}variable_name
* variable identifier name. e.g., /[a-z\d$_]+(.[a-z\d_]+)+/i
* @param {Function}[modify_function]
* 註冊: 當以 .set_value() 改變時,順便執行此函數:<br />
* modify_function(value, variable_name).
* @param {Object|Function}[name_space]
* initialize name-space. default: globalThis.
* @param [value]
* 設定 variable 為 value.
*
* @returns value of specified variable identifier name
*
* @since 2010/1/1 18:11:40
* @note 'namespace' 是 JScript.NET 的保留字。
*
* @see https://github.com/tc39/proposal-optional-chaining
*/
value_of = function (variable_name, modify_function, name_space, value) {
var variable_name_array;
if (Array.isArray(variable_name) && variable_name.length > 0) {
variable_name_array = variable_name;
variable_name = variable_name.join('.');
// 在 Object("") 的情況下,typeof this==='object'。此時不可用 typeof。
} else if (typeof variable_name === 'string' && variable_name)
variable_name_array = variable_name.split('.');
else
// return variable_name: 預防 value_of(null/undefined/NaN)
return variable_name;
// _.debug('get value of [' + variable_name + ']');
if (_.is_Function(modify_function)) {
if (variable_name in modify_function_hash)
modify_function_hash[variable_name].push(modify_function);
else
modify_function_hash[variable_name] = [modify_function];
}
var i = 0,
// TODO:
// 可處理如:
// obj1 . obj2 [ ' obj3.4 * \[ ' ] [''] . obj5 [ " obj6 \" \' \] . " ]
// or detect obj1 .. obj2
l = variable_name_array.length,
v = name_space ||
// `CeL.env.global`, NOT `CeL.env.globalThis`
globalThis,
// do set value
do_set = arguments.length > 3;
if (false)
_.debug('globalThis.' + _.Class + ' = ' + _.env.global[_.Class]);
if (do_set)
l--;
function cannot_travel_down() {
variable_name_array[i] = '<em>' + variable_name_array[i] + '</em><span class="debug_weaken">';
if (false)
alert(_.log.buffer.length + ',' + _.log.max_length + '\n'
+ _.debug);
_.debug('Cannot ' + (do_set ? 'set' : 'get') +
' variable [<span title="' + variable_name + '">' + variable_name_array.join('.') + '</span></span>]!', 2, 'value_of');
// throw
return undefined;
}
try {
while (i < l) {
var variable_name = variable_name_array[i++];
if (false) {
_.debug('to [' + variable_name + ']: '
//+ v[variable_name]
);
}
if (!(variable_name in v))
return cannot_travel_down();
if (platform.nodejs && typeof v === 'function'
// TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
&& variable_name in {
'caller' : true,
'callee' : true,
'arguments' : true
}) {
return cannot_travel_down();
}
v = v[variable_name];
}
if (do_set) {
v[variable_name_array[i]] = value;
do_set = modify_function_hash[variable_name];
if (do_set)
for (i in do_set)
try {
do_set[i](value, variable_name);
} catch (e) {
// TODO: handle exception
}
}
} catch (e) {
return cannot_travel_down();
}
return v;
};
_// JSDT:_module_
.
/**
* simple evaluates to set value of specified variable identifier name.<br />
* 不使用 eval().
*
* @param {String}variable_name
* variable identifier name. e.g., /[a-z\d$_]+(.[a-z\d_]+)+/i
* @param [value]
* 設定 variable 為 value.
* @param {Object|Function}[name_space]
* initialize name-space. default: globalThis.
*
* @returns name-space of specified variable identifier name.<br />
* e.g., return a.b.c when call .set_value('a.b.c.d').
* @since 2011/8/27 15:43:03
*/
set_value = function (variable_name, value, name_space) {
return _.value_of(variable_name, null, name_space, value);
};
// ------------------------------------------------------------------------
_// JSDT:_module_
.
/**
* is index 用, only digits. 整數 >= 0.<br />
* cf. Number.isInteger()
*
* @param value
* value to test
* @returns if value only digits.
*/
is_digits = function (value) {
// 須預防 TypeError: Cannot convert object to primitive value。
return typeof value !== 'object'
// value == value | 0
// value == (value >>> 0)
&& /^\d+$/.test(value);
};
if (false)
if (!globalThis.is_digits)
globalThis.is_digits = _.is_digits;
/**
* 測試各 type:
*
* undefined:<br />
* 變數值存在且變數 'undefined' 存在時: variable === undefined<br />
* 否則: typeof(variable) === 'undefined'
*
* TODO:<br />
* void(1) === void(0) === undefined
*
* number, boolean, string:<br />
* typeof(variable) === '~'<br />
*
* TODO:<br />
* NaN<br />
* int/float
*
* object:<br />
* null
*
* 不同 frame 中的 Array 擁有不同的 constructor
*/
/**
* A cache to the function we use to get the type of specified value.<br />
* Get the [[Class]] property of this object.<br />
* 不使用 Object.toString() 是怕被 overridden
*
* @type {Function}
* @inner
*/
var get_object_type = Function.prototype.bind
? Function.prototype.call.bind(Object.prototype.toString)
: function (o) { return Object.prototype.toString.call(o); };
_.get_object_type = get_object_type;
_// JSDT:_module_
.
/**
* 判斷為何種 type。主要用在 Error, DOMException 等 native methods / native objects /
* built-in objects 之判別。
*
* @param value
* variable or class instance to test
* @param {String}[want_type]
* type to compare: number, string, boolean, undefined, object,
* function
* @param {Boolean}[get_Class]
* get the class name of a class(function) instance.
*
* @returns {Boolean} The type is matched.
* @returns {String} The type of value
* @returns {undefined} error occurred
*
* @example<code>
CeL.is_type(value_to_test, 'Array');
</code>
*
* @since 2009/12/14 19:50:14
* @see <a
* href="http://lifesinger.org/blog/2009/02/javascript-type-check-2/"
* accessdate="2009/12/6 19:10">JavaScript类型检测小结(下) - 岁月如歌</a><br />
* <a
* href="http://thinkweb2.com/projects/prototype/instanceof-considered-harmful-or-how-to-write-a-robust-isarray/"
* accessdate="2009/12/6 19:10">Perfection kills » `instanceof`
* considered harmful (or how to write a robust `isArray`)</a>
*/
is_type = function is_type(value, want_type, get_Class) {
var type;
if (want_type && (type = typeof want_type) !== 'string')
want_type = type;
type = value === null ? String(value) : typeof value;
if (get_Class)
try {
if (type === 'function' && value.Class)
// get the class name of a class
// 若 value 為 function 時,測試其本身之 Class。
type = value.Class;
else if (type === 'function' || type === 'object')
if (('constructor' in value) && (get_Class = value.constructor).Class)
// get the class name of a class instance
// 若 value 為 function 且無 Class,或為 object 時,測試其
// constructor 之 Class。
type = get_Class.Class;
else if (get_Class = _.get_function_name(get_Class))
// get Class by function name
type = get_Class;
} catch (e) {
_.error(_.Class + '.is_type: Fault to get ths class name of value!');
}
if (type !== 'object')
// type maybe 'unknown' or 'date'!
return want_type ? type === want_type.toLowerCase() : type;
try {
get_Class = get_object_type(value);
} catch (e) {
_.error(_.Class + '.is_type: Fault to get object type of value!');
get_Class = '';
}
if (want_type)
return get_Class === (want_type.charAt(0) === '[' ? want_type
: '[object ' + want_type + ']');
want_type = get_Class.match(/^\[object ([^\]]+)\]$/);
if (want_type)
return want_type[1];
return type;
};
_// JSDT:_module_
.
/**
* get a type test function
*
* @example<code>
* // 大量驗證時,推薦另外在本身 scope 中造出捷徑:
* _.OtS = Object.prototype.toString;
* var is_Person = CeL.type_tester('Person', 'OtS');
* // test
* if(is_Person(value))
* // it's really a Person object
* ;
* </code>
*
* @param {String}want_type
* object type to compare
* @param {String}[toString_reference]
* a reference name to Object.prototype.toString
*
* @returns {Function} type test function
* @since 2009/12/20 08:38:26
*/
type_tester = function type_tester(want_type, toString_reference) {
var t = '[object ' + want_type + ']';
if (false)
return new Function('v', 'return "' + t + '"==='
+ (toString_reference ||
// 在 Google Chrome 中,
// 'Object.prototype.toString' 可以與其 reference 同速度,
// 但其他的 reference 會快些。
'Object.prototype.toString'
)
+ '.call(v);');
return typeof toString_reference === 'string'
&& toString_reference ?
new Function('v', 'return "' + t
+ '"===' + toString_reference + '.call(v);')
// slow@Chrome
: function (v) { return t === get_object_type(v); };
// faster@Chrome
// : new Function('v', 'return "' + t +
// '"===Object.prototype.toString.call(v);');
};
_// JSDT:_module_
.
/**
* Test if the value is a native Function.
*
* @param v
* value to test
* @returns {Boolean} the value is a native Function.
* @since 2009/12/20 08:38:26
*/
is_Function =
// _.type_tester('Function');
function is_Function(v) {
// typeof 比 Object.prototype.toString 快,
// 不過得注意有些 native object 可能 type 是 'function',但不具有 function 特性。
return get_object_type(v) === '[object Function]';
// 須注意,在 firefox 3 中,
// typeof [object HTMLObjectElement] 之外的 HTMLElement 皆 ===
// 'function',
// 因此光用 typeof() === 'function' 而執行下去會得出
// [XPCWrappedNative_NoHelper] Component is not available
if (false)
return typeof v === 'function'
|| get_object_type(v) === '[object Function]';
};
_// JSDT:_module_
.
/**
* Test if the value is a native ECMAScript Object / plain {Object}. is an
* ordinary object.<br />
* 去除 null, undefined。 TODO:<br />
* test null<br />
* BUG: IE8 中 is_Object(ELEMENT_NODE) === true!
*
* @param v
* value to test
* @returns {Boolean} the value is an ordinary object (a native Object).
* else: exotic object, ECMAScript function object (pure function),
* a primitive value.
* @since 2009/12/20 08:38:26
*/
is_Object =
// MSIE 6.0 - 9.0 (JScript 9.0.16450):
// Object.prototype.toString.call(undefined) === '[object Object]'
// Object.prototype.toString.call(null) === '[object Object]'
get_object_type(null) === '[object Object]' || get_object_type(undefined) === '[object Object]' ?
function is_Object(v) {
// &&: 除非為必要條件,否則越難達到、評估成本越小的應擺前面。
return get_object_type(v) === '[object Object]'
// && typeof v !== 'undefined' && v !== null
&& v
// incase CeL.is_Object(new CeL.URI())
&& (!v.__proto__ || v.__proto__.constructor === Object);
}
:
// _.type_tester('Object');
function is_Object(v) {
// 非如此不得與 jQuery 平起平坐…
return get_object_type(v) === '[object Object]'
// incase CeL.is_Object(new CeL.URI())
// (!v.__proto__ || v instanceof Object)
&& (!v.__proto__ || v.__proto__.constructor === Object);
};
_// JSDT:_module_
.
is_empty_object = function is_empty_object(value) {
if (typeof value === 'object') {
for (var key in value) {
if (!Object.hasOwn || Object.hasOwn(value, key)) {
return false;
}
}
return true;
}
// return undefined: not object.
};
_.is_RegExp = _.type_tester('RegExp');
// Object.getPrototypeOf
_.is_Date = false && (new Date).__proto__ === Date.prototype ? function(value) {
return value && value.__proto__ === Date.prototype;
} : _.type_tester('Date');
// ----------------------------------------------------------------------------------------------------------------------------------------------------------//
function is_version(version_now, version_to_test, exactly) {
if (!isNaN(version_now)) {
if (!version_to_test) {
// 數字化版本號
return +version_now;
}