You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/UI/Handlebars/Helpers/Numbers.js

15 lines
417 B

var Handlebars = require('handlebars');
var FormatHelpers = require('../../Shared/FormatHelpers');
Handlebars.registerHelper('Bytes', function(size) {
return new Handlebars.SafeString(FormatHelpers.bytes(size));
});
Handlebars.registerHelper('Pad2', function(input) {
return FormatHelpers.pad(input, 2);
});
Handlebars.registerHelper('Number', function(input) {
return FormatHelpers.number(input);
});