start() — tailwindcss Function Reference
Architecture documentation for the start() function in instrumentation.ts from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD d9347602_4ae0_963c_e85a_d65c44a83e25["start()"] 4cd99e59_ac1e_2a1f_0946_33cc1afd2532["get()"] d9347602_4ae0_963c_e85a_d65c44a83e25 -->|calls| 4cd99e59_ac1e_2a1f_0946_33cc1afd2532 style d9347602_4ae0_963c_e85a_d65c44a83e25 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/@tailwindcss-node/src/instrumentation.ts lines 23–33
start(label: string) {
let namespace = this.#timerStack.map((t) => t.label).join('//')
let id = `${namespace}${namespace.length === 0 ? '' : '//'}${label}`
this.#hits.get(id).value++
// Create the timer if it doesn't exist yet
this.#timers.get(id)
this.#timerStack.push({ id, label, namespace, value: process.hrtime.bigint() })
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does start() do?
start() is a function in the tailwindcss codebase.
What does start() call?
start() calls 1 function(s): get.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free