MCPcopy
hub / github.com/MikeMcl/bignumber.js / Format

Interface Format

bignumber.d.ts:306–337  ·  view source on GitHub ↗

See `FORMAT` and `toFormat`.

Source from the content-addressed store, hash-verified

304
305 /** See `FORMAT` and `toFormat`. */
306 interface Format {
307
308 /** The string to prepend. */
309 prefix?: string;
310
311 /** The negative sign. */
312 negativeSign?: string;
313
314 /** The positive sign. */
315 positiveSign?: string;
316
317 /** The decimal separator. */
318 decimalSeparator?: string;
319
320 /** The grouping separator of the integer part. */
321 groupSeparator?: string;
322
323 /** The primary grouping size of the integer part. */
324 groupSize?: number;
325
326 /** The secondary grouping size of the integer part. */
327 secondaryGroupSize?: number;
328
329 /** The grouping separator of the fraction part. */
330 fractionGroupSeparator?: string;
331
332 /** The grouping size of the fraction part. */
333 fractionGroupSize?: number;
334
335 /** The string to append. */
336 suffix?: string;
337 }
338
339 interface Instance {
340

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…