UNPKG

flosight-ui

Version:

An open-source frontend for the Flosight API. The Flosight API provides you with a convenient, powerful and simple way to query and broadcast data on the florincoin network and build your own services with it.

16 lines (14 loc) 356 B
'use strict'; angular.module('flosight') .filter('startFrom', function() { return function(input, start) { start = +start; //parse to int return input.slice(start); } }) .filter('split', function() { return function(input, delimiter) { var delimiter = delimiter || ','; return input.split(delimiter); } });