UNPKG

terriajs

Version:

Geospatial data visualization platform.

10 lines (8 loc) 225 B
'use strict'; var inherit = function(base, derived) { function F() {} F.prototype = base.prototype; derived.prototype = new F(); derived.prototype.constructor = derived; }; module.exports = inherit;