itsumura-h / nim-basolato

An asynchronous fullstack web framework for Nim.
MIT License
236 stars 18 forks source link

idElement, classElement #293

Open itsumura-h opened 4 months ago

itsumura-h commented 4 months ago

basolato/view

proc idElement*(id="id"):string =
  const options = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  let saffix = "_" & randStr(10, options)
  return id & saffix

proc classElement*(class="class"):string =
  const options = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  let saffix = "_" & randStr(10, options)
  return class & saffix