UNPKG

zettapi_client

Version:

Admin panel and client-side CRUD operations in angular to use with zettapi_server rest api to get started quickly in any CMS project.

6 lines 157 B
app.filter('makePositive', function () { return function (num) { if (typeof num === 'undefined') return; return Math.abs(num); }; });