Class Tpl

Constructors

  • Returns Tpl

Methods

  • Escapes a string for safe usage in HTML.

    Parameters

    • str: string

      The string to escape.

    Returns string

    The escaped string.

  • Iterates over an object or array and applies a callback function.

    Parameters

    • o: any

      The object or array to iterate over.

    • f: (value: any, key: string | number) => void

      The callback function.

    Returns void

  • Retrieves the last modification time of a file.

    Parameters

    • file: string

      The file path to check.

    Returns number

    The last modification time in milliseconds.

  • Renders a template with the provided data and local variables.

    Parameters

    • file: string

      The name of the template file (without extension).

    • data: Record<string, any> = {}

      Data object to inject into the template.

    • locals: Record<string, any> = {}

      Local variables to be used within the template.

    Returns string

    The rendered HTML string.

  • Enables or disables the template caching mechanism.

    Parameters

    • cache: boolean

      If true, enables caching.

    Returns void

  • Enables or disables debug mode.

    Parameters

    • debug: boolean

      If true, enables debug mode.

    Returns void

  • Sets global variables to be used in all templates.

    Parameters

    • globals: Record<string, any>

      An object containing global variables.

    Returns void

  • Sets the directory for template files and preloads all templates.

    Parameters

    • views: string

      The directory path for template files.

    Returns void