mirror of
https://github.com/konvajs/konva.git
synced 2025-10-15 12:34:52 +08:00
19 lines
293 B
JavaScript
19 lines
293 B
JavaScript
![]() |
/** @constructor */
|
||
|
function Message(to) {
|
||
|
|
||
|
var headers = {},
|
||
|
response;
|
||
|
|
||
|
/** document me */
|
||
|
headers.to = to;
|
||
|
|
||
|
(function() {
|
||
|
/** document me */
|
||
|
response.code = '200';
|
||
|
|
||
|
/** document me */
|
||
|
headers.from = '';
|
||
|
})()
|
||
|
}
|
||
|
|