2013年1月28日月曜日

new and not new

x() instanceof x と new x() instanceof x を同時に満たすような x の作り方。

  1. var x = (function () {  
  2.     var constructor = function (args) {  
  3.         /* constructor */  
  4.     };  
  5.   
  6.     /* other definitions */  
  7.   
  8.     var exports = function (args) {  
  9.         return new constructor(args);  
  10.     };  
  11.   
  12.     constructor.prototype.constructor = exports;  
  13.     exports.prototype = constructor.prototype;  
  14.   
  15.     return exports;  
  16. }());  

とやると、x() instanceof x && new x() instanceof x となる。

jQuery も似たような事やってる。https://github.com/jquery/jquery/blob/master/src/core.js