pad.js 188 B

1234567
  1. 'use strict';
  2. module.exports = function (t, a) {
  3. a(t.call(78, 4), '0078');
  4. a(t.call(65.12323, 4, 3), '0065.123', "Precision");
  5. a(t.call(65, 4, 3), '0065.000', "Precision integer");
  6. };