16 lines
404 B
JavaScript
16 lines
404 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'handlebars',
|
|
'Shared/FormatHelpers'
|
|
], function (Handlebars, FormatHelpers) {
|
|
Handlebars.registerHelper('Bytes', function (size) {
|
|
return new Handlebars.SafeString(FormatHelpers.Bytes(size));
|
|
});
|
|
|
|
Handlebars.registerHelper('Pad2', function (input) {
|
|
return FormatHelpers.pad(input, 2);
|
|
});
|
|
|
|
});
|