mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 09:52:57 +03:00
14 lines
204 B
JavaScript
14 lines
204 B
JavaScript
var myObject = (function() {
|
|
|
|
/** Give x another name.
|
|
@alias myObject
|
|
@namespace
|
|
*/
|
|
var x = {
|
|
/** document me */
|
|
myProperty: 'foo'
|
|
}
|
|
|
|
return x;
|
|
})();
|