Home / Function/ repeat() — vue Function Reference

repeat() — vue Function Reference

Architecture documentation for the repeat() function in codeframe.ts from the vue codebase.

Entity Profile

Dependency Diagram

graph TD
  a16420b7_c37a_099c_fe39_3b9d6d20d228["repeat()"]
  31503a99_436d_a6aa_9429_398a818a20a1["generateCodeFrame()"]
  31503a99_436d_a6aa_9429_398a818a20a1 -->|calls| a16420b7_c37a_099c_fe39_3b9d6d20d228
  style a16420b7_c37a_099c_fe39_3b9d6d20d228 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

src/compiler/codeframe.ts lines 39–52

function repeat(str: string, n: number) {
  let result = ''
  if (n > 0) {
    // eslint-disable-next-line no-constant-condition
    while (true) {
      // eslint-disable-line
      if (n & 1) result += str
      n >>>= 1
      if (n <= 0) break
      str += str
    }
  }
  return result
}

Subdomains

Frequently Asked Questions

What does repeat() do?
repeat() is a function in the vue codebase.
What calls repeat()?
repeat() is called by 1 function(s): generateCodeFrame.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free