tm-text
Version:
Trackmania and Maniaplanet text parser and formatter
20 lines (19 loc) • 449 B
JavaScript
import { SYNTAX } from './syntax';
export const withDefaultOptions = (options = {}) => ({
syntax: SYNTAX.MANIAPLANET,
scheme: 'https',
font: {
family: 'Times New Roman',
size: '16px',
weight: 'normal',
...options.font,
},
...options,
playerParameters: {
playerlogin: null,
lang: null,
nickname: null,
path: null,
...options.playerParameters,
},
});