![JAR search and dependency download from the Maven repository](/logo.png)
package.2022.ToZeroPaddedDecimalString.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of es-abstract Show documentation
Show all versions of es-abstract Show documentation
ECMAScript spec abstract operations.
'use strict';
var GetIntrinsic = require('get-intrinsic');
var $String = GetIntrinsic('%String%');
var $RangeError = GetIntrinsic('%RangeError%');
var StringPad = require('./StringPad');
var isInteger = require('../helpers/isInteger');
// 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');
};
© 2015 - 2025 Weber Informatics LLC | Privacy Policy