JSPM

@tamagui/timer

1.125.21
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 76721
    • Score
      100M100P100Q155579F

    Package Exports

      Readme

      time console output screenshot!

      import { timer } from '@tamagui/timer'
      
      const t = timer()
      
      setTimeout(() => {
        t.print()
      }, 3000)
      
      function something() {
        const time = t.start()
        
        // do stuff...
        
        time`firstTag`
      
        // do stuff...
        time`second`
      }