UNPKG

hasher

Version:

Hasher is a set of JavaScript functions to control browser history for rich-media websites and applications

16 lines (15 loc) 220 B
/** * @constructor */ function Outer() { /** * @constructor */ function Inner(name) { /** The name of this. */ this.name = name; } this.open = function(name) { return (new Inner(name)); } }