UNPKG

cordova-pebble

Version:

Allows communication with Pebble smartwatch applications and Cordova applications.

13 lines (10 loc) 248 B
"use strict"; /* Class utilities */ var classes = { subclass: function(child, parent) { function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); } }; module.exports = classes;