Advertisement
Guest User

Untitled

a guest
Oct 8th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2.  * @namespace
  3.  */
  4. var ns;
  5.  
  6. (/** @lends ns */ function (ns) {
  7.     'use strict';
  8.  
  9.     /**
  10.      * Make me private!
  11.      */
  12.     function priv() {
  13.  
  14.     }
  15.  
  16.     /**
  17.      * Constructs class
  18.      * @class
  19.      */
  20.     function Foo() {
  21.     }
  22.  
  23.     /**
  24.      * Blabla
  25.      */
  26.     Foo.prototype.bar = function () {
  27.  
  28.     };
  29.  
  30.     ns.Foo = Foo;
  31.  
  32. })(ns || (ns = {}));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement