dbkaplun / driftless

Driftless setInterval and setTimeout replacement for Node and the browser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't import in browser

MelerEcckmanLawler opened this issue · comments

import { setDriftlessTimeout, setDriftlessInterval, clearDriftless, } from 'driftless';

Does not work in browser, even inside <script type='module'></script>.

Solution:

`
<script src='https://wzrd.in/standalone/driftless@latest'></script>
<script type='module'>
'use strict'

      driftless.setDriftlessInterval(()=>{
        console.log('tick')
      }, 100)
    </script>

`