@thi.ng/strings
Version:
Various string formatting & utility functions
24 lines • 610 B
TypeScript
import type { Stringer } from "./api.js";
/**
* Formats given value `x` as Fortran style Hollerith string.
*
* @remarks
* References:
*
* - https://en.wikipedia.org/wiki/Hollerith_constant
* - https://en.wikipedia.org/wiki/IGES#File_format
*
* @example
* ```ts tangle:../export/hstr.ts
* import { hstr } from "@thi.ng/strings";
*
* console.log(hstr("abc")); // "3Habc"
* console.log(hstr(123.45)); // "6H123.45"
* console.log(hstr("")); // "0H"
* console.log(hstr(null)); // ""
* ```
*
* @param x -
*/
export declare const hstr: Stringer<any>;
//# sourceMappingURL=hollerith.d.ts.map