mirror of
https://github.com/konvajs/konva.git
synced 2026-03-03 16:58:33 +08:00
8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
/**
|
|
* The global object to which functions and properties can be assigned.
|
|
* @private
|
|
*/
|
|
module.exports = (function() {
|
|
return this;
|
|
}).call(null);
|