Files
flights_web_raw/ClientApp/node_modules/es-abstract/2025/StringPaddingBuiltinsImpl.js
T
gnezim 0a5ab058a6 Initial commit: Aeroflot Flights Web - Angular 12 baseline
- 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.
2026-04-05 18:47:57 +03:00

28 lines
876 B
JavaScript

'use strict';
var $TypeError = require('es-errors/type');
var StringPad = require('./StringPad');
var ToLength = require('./ToLength');
var ToString = require('./ToString');
// https://262.ecma-international.org/15.0/#sec-stringpaddingbuiltinsimpl
module.exports = function StringPaddingBuiltinsImpl(O, maxLength, fillString, placement) {
if (placement !== 'start' && placement !== 'end' && placement !== 'START' && placement !== 'END') {
throw new $TypeError('Assertion failed: `placement` must be ~START~ or ~END~');
}
var S = ToString(O); // step 1
var intMaxLength = ToLength(maxLength); // step 2
var stringLength = S.length; // step 3
if (intMaxLength <= stringLength) { return S; } // step 4
var filler = typeof fillString === 'undefined' ? ' ' : ToString(fillString); // steps 5-6
return StringPad(S, intMaxLength, filler, placement); // step 7
};