flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
20
VISUALIZACION/node_modules/es-abstract/2023/ToZeroPaddedDecimalString.js
generated
vendored
Executable file
20
VISUALIZACION/node_modules/es-abstract/2023/ToZeroPaddedDecimalString.js
generated
vendored
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
'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');
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue