Interface ReadEncodingOptions

interface ReadEncodingOptions {
    autoGuessEncoding?: boolean;
    encoding?: string;
}

Hierarchy (view full)

Properties

autoGuessEncoding?: boolean

The optional guessEncoding parameter allows to guess encoding from content of the file.

encoding?: string

The optional encoding parameter allows to specify the desired encoding when resolving the contents of the file.