mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
15 lines
256 B
JavaScript
15 lines
256 B
JavaScript
/** @namespace */
|
|
var constructor = {
|
|
/** document me */
|
|
toString: function() {}
|
|
};
|
|
|
|
/** @namespace */
|
|
var prototype = {
|
|
/** document me */
|
|
valueOf: function() {}
|
|
};
|
|
|
|
/** document me */
|
|
var hasOwnProperty = Object.prototype.hasOwnProperty;
|