@jessestricker/java-properties
    Preparing search index...

    Interface StringifyOptions

    The options for converting JavaScript values to Java properties.

    interface StringifyOptions {
        escapeUnicode?: boolean;
        fileComment?: string;
    }
    Index

    Properties

    escapeUnicode?: boolean

    Whether to escape Unicode characters outside of ISO 8859-1.

    Set this to true when you want to save the string returned by JavaProperties.stringify using the ISO 8859-1 encoding. Properties files encoded in ISO 8859-1 can be loaded by Java code using the older Properties.load(InputStream) method.

    false

    fileComment?: string

    The comment at the beginning of the properties file.

    No file comment will be generated.