0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
20 lines
572 B
JavaScript
20 lines
572 B
JavaScript
'use strict';
|
|
|
|
var GetIntrinsic = require('get-intrinsic');
|
|
|
|
var $String = GetIntrinsic('%String%');
|
|
var $RangeError = require('es-errors/range');
|
|
var isInteger = require('math-intrinsics/isInteger');
|
|
|
|
var StringPad = require('./StringPad');
|
|
|
|
// https://262.ecma-international.org/13.0/#sec-tozeropaddeddecimalstring
|
|
|
|
module.exports = function ToZeroPaddedDecimalString(n, minLength) {
|
|
if (!isInteger(n) || n < 0) {
|
|
throw new $RangeError('Assertion failed: `q` must be a non-negative integer');
|
|
}
|
|
var S = $String(n);
|
|
return StringPad(S, minLength, '0', 'start');
|
|
};
|