20 lines
524 B
JavaScript
20 lines
524 B
JavaScript
import { normalSpaces } from './normalSpaces.js';
|
|
|
|
/**
|
|
* Parts with forced "normal" spaces
|
|
*
|
|
* @typedef {import('../../types/LocalizeMixinTypes').FormatNumberPart} FormatNumberPart
|
|
* @param {FormatNumberPart[]} formattedParts
|
|
* @returns {FormatNumberPart[]}
|
|
*/
|
|
export function forceNormalSpaces(formattedParts) {
|
|
/** @type {FormatNumberPart[]} */
|
|
const result = [];
|
|
formattedParts.forEach(part => {
|
|
result.push({
|
|
type: part.type,
|
|
value: normalSpaces(part.value),
|
|
});
|
|
});
|
|
return result;
|
|
}
|