mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 04:18:23 +00:00
7 lines
158 B
JavaScript
7 lines
158 B
JavaScript
import { htmlSafe } from "@ember/template";
|
|
import I18n from "discourse-i18n";
|
|
|
|
export default function (size) {
|
|
return htmlSafe(I18n.toHumanSize(size));
|
|
}
|