Save current BZZZ config-ui state before CHORUS branding update
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
		
							
								
								
									
										27
									
								
								install/config-ui/node_modules/es-abstract/2024/StringPaddingBuiltinsImpl.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										27
									
								
								install/config-ui/node_modules/es-abstract/2024/StringPaddingBuiltinsImpl.js
									
									
									
										generated
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,27 @@ | ||||
| '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 | ||||
| }; | ||||
		Reference in New Issue
	
	Block a user
	 anthonyrawlins
					anthonyrawlins