Specifically here, I want to pass one of these thin spaces between the dollar sign and the price in the filter below:
U+2009 THIN SPACE
U+2006 SIX-PER-EM SPACE
U+200A HAIR SPACE
filters: {
currency: function(price) {
return "$".concat(price.toFixed(2));
}
}