UNPKG

celeritas

Version:

This is an API service framework which supports API requests over HTTP & WebSockets.

20 lines (11 loc) 252 B
'use strict'; String.prototype.capitalize = function() { return this.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); }); }; class SelfCall { constructor (app, args) { } static emit (call) { } } module.exports = SelfCall;