sdf-parser
    Preparing search index...

    Interface IteratorOptions

    Options for the iterator async generator.

    interface IteratorOptions {
        dynamicTyping?: boolean;
        eol?: string;
        filter?: (molecule: IteratorMolecule) => boolean;
    }
    Index

    Properties

    dynamicTyping?: boolean

    When true, numeric string values are automatically converted to numbers.

    true
    
    eol?: string

    End-of-line character used to split field entries.

    '\n'
    
    filter?: (molecule: IteratorMolecule) => boolean

    A predicate function to filter molecules. Only molecules for which this function returns true are yielded.