UNPKG

angoose

Version:

Angoose is a Remote Method Invocation module that comes with built-in mongoose/angular support. Now you can call server side module in browser just like you're in the server side!

7 lines 251 B
'use strict' angular.module('angoose.ui.filters').filter('camelcase', function(){ return function(string){ if(!string || string.length ==0) return string; return string.substring(0,1).toUpperCase() + string.substring(1) } });