We have moved: https://github.com/magnetikonline/linuxmicrosoftievirtualmachines
Due to the popularity of this Gist, and the work in keeping it updated via a Gist, all future updates will take place at the above location. Thanks!
| /** | |
| * JavaScript implementation of a Proxy class. | |
| **/ | |
| function Proxy(p_target) | |
| { | |
| var self = this; | |
| self.target = p_target; | |
| // Access target's properties | |
| self.get = function (p_property) |
We have moved: https://github.com/magnetikonline/linuxmicrosoftievirtualmachines
Due to the popularity of this Gist, and the work in keeping it updated via a Gist, all future updates will take place at the above location. Thanks!