Sha256: 45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72
Contents?: true
Size: 593 Bytes
Versions: 26
Compression:
Stored size: 593 Bytes
Contents
import * as prettyFormat from 'pretty-format' export interface PrettyDOMOptions extends prettyFormat.OptionsReceived { /** * Given a `Node` return `false` if you wish to ignore that node in the output. * By default, ignores `<style />`, `<script />` and comment nodes. */ filterNode?: (node: Node) => boolean } export function prettyDOM( dom?: Element | HTMLDocument, maxLength?: number, options?: PrettyDOMOptions, ): string | false export function logDOM( dom?: Element | HTMLDocument, maxLength?: number, options?: PrettyDOMOptions, ): void export {prettyFormat}
Version data entries
26 entries across 26 versions & 1 rubygems