UNPKG

shadowsocks-manager

Version:

A shadowsocks manager tool for multi user and traffic control.

12 lines (11 loc) 311 B
const app = angular.module('app'); app.filter('prettyPrintBatchStatus', function () { return function (status) { const result = { AVAILABLE: '可用', USEDUP: '售罄', REVOKED: '召回' }; return result[status] || '其它'; }; });