Files
gocryptotrader/web/app/components/helpers/stringUtils.js

9 lines
273 B
JavaScript

angular.module('myApp.stringUtils', [])
.filter('removeSpaces', [function() {
return function(string) {
if (!angular.isString(string)) {
return string;
}
return string.replace(/[\s]/g, '');
};
}]);